Results 1 to 13 of 13

Thread: Directly moving the mouse

  1. #1
    Join Date
    Feb 2013
    Location
    Waterloo, Ontario
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Directly moving the mouse

    I'm not talking about the MMouse function, is there anyway to just directly click or right click on a coordinate and move the mouse to somewhere else without delay? I want to sort of simulate a mousekey like function. Not worried about bans for now.

  2. #2
    Join Date
    Jan 2013
    Posts
    294
    Mentioned
    1 Post(s)
    Quoted
    121 Post(s)

    Default

    just Mouse().

  3. #3
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    MoveMouse(x, y);
    ClickMouse(x, y, ClickType);
    Highly dis-recommended for runescape.

  4. #4
    Join Date
    Jan 2013
    Posts
    294
    Mentioned
    1 Post(s)
    Quoted
    121 Post(s)

    Default

    Quote Originally Posted by The Killer View Post
    MoveMouse(x, y);
    ClickMouse(x, y, ClickType);
    Highly dis-recommended for runescape.
    agreed with killer. that is very botlike.

  5. #5
    Join Date
    Feb 2013
    Location
    Waterloo, Ontario
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Thanks guys for the fast replies! I'll try it out after work. And obviously if I get banned it's my fault, but I'm going to use it in a place where mousekeys are frequently used for short periods of time so it'll be less detectable.
    Last edited by hsxu; 04-10-2013 at 02:37 PM.

  6. #6
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    I think there is a mouse key emulator with Simba.. @YoHoJo had a YouTube video showing it

  7. #7
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by RJJ95 View Post
    I think there is a mouse key emulator with Simba.. @YoHoJo had a YouTube video showing it
    TK obviously mentioned it before... Why post this?

    inc(PostCount);

  8. #8
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by xtrapsp View Post
    TK obviously mentioned it before... Why post this?

    inc(PostCount);
    Mousekey <> auto-clicker

  9. #9
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by Zyt3x View Post
    Mousekey <> auto-clicker
    !=

  10. #10
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by xtrapsp View Post
    TK obviously mentioned it before... Why post this?

    inc(PostCount);
    Didn't know if it was the same thing he was using..

  11. #11
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by xtrapsp View Post
    !=
    =/=

  12. #12
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    I'm not sure if this still works or not but I made something you might be interested in. It's for RS2 (not OSR).
    http://villavu.com/forum/showthread.php?t=84401

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  13. #13
    Join Date
    Feb 2013
    Location
    Waterloo, Ontario
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    This is some psuedocode I came up with. Thanks Flight for showing me how to apply some of the code.

    Simba Code:
    procedure SellFirstSlotRunes;
    var
      x, y: integer;
    begin
      MMouse(x coordinate of first slot inventory, y coordinate of first slot inventory, 5, 5)
      GetMousePos(x, y);

      repeat
        clickmouse2(mouse_right);
        wait(Randomrange(some number, some higher number));
        MoveMouse(x, y+70);
        wait(Randomrange(some number, some higher number));
        clickmouse2(mouse_left);
        wait(Randomrange(some number, some higher number));
        MoveMouse(x, y);
        wait(Randomrange(some number, some higher number));
      until(whenever I want it to end)
    end;

    This way there would be a human-like action delay (pressing 1 to right click, 2 to move mouse, 3 to left click, 4 to move mouse back etc)
    clickmouse2 will be replaced with clickmouse if it's too fast
    Last edited by hsxu; 04-10-2013 at 03:34 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •