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.
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.
just Mouse().
MoveMouse(x, y);
ClickMouse(x, y, ClickType);
Highly dis-recommended for runescape.
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.
Tutorials:
| Utilizing the tools in Villavu | How to create Pythagoras theorem calculator in JavaScript | How to make a live signature of your Pascal Script | Concepts of Programming Tutorial | Worked on Frog Random with Justin for RS07
Tutorials:
| Utilizing the tools in Villavu | How to create Pythagoras theorem calculator in JavaScript | How to make a live signature of your Pascal Script | Concepts of Programming Tutorial | Worked on Frog Random with Justin for RS07
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..."
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.
There are currently 1 users browsing this thread. (0 members and 1 guests)