Hey i was just wandering what is detectable about clickmouse?
I want to make a lil script but Mouse has a wait or something at the end of it.
So I was wondering if it would be detectable if i used MMouse then clickmouse then continue on.
Hey i was just wandering what is detectable about clickmouse?
I want to make a lil script but Mouse has a wait or something at the end of it.
So I was wondering if it would be detectable if i used MMouse then clickmouse then continue on.
AFAIK clickmouse does HoldMouse and Releasemouse instantly (with no waits in between) which is impossible. A human/mouse cant click that fast!
SRLs mouse does this about the holding/releasing of the mouse:
SCAR Code:GetMousePos(b, c);
HoldMouse(b, c, left);
repeat
Wait(20 + Random(30));
a := a + 1;
until (a > 4);
GetMousePos(b, c);
ReleaseMouse(b, c, left);
Ask any more questions if you have any![]()
ok thanks mate.
This is kinda what i wanted to do..
What do you think?Code:Procedure MyMouse(x, y, Rx, Ry : Integer; LeftClick : Boolean); var x1, x2, y1, y2, a, b : Integer; begin a := 30; b := 50; GetMousePos(x1, y1); if x > x1 then x2 := ((x - x1)/randomRange(a, b)) + x else x2 := x - ((x1 - x)/randomRange(a, b)); if y > y1 then y2 := ((y - y1)/randomRange(a, b)) + y else y2 := y - ((y1 - y)/randomRange(a, b)); MMouse(x, y, Rx, Ry); GetMousePos(x, y); HoldMouse(x, y, LeftClick); wait(50+random(50)); GetMousePos(x, y); ReleaseMouse(x, y, LeftClick); MMouse(x2, y2, 0, 0); end;
you know how if you click something. you mouse sometimes continues its path even after you've clicked.. thats what im tryin to simulate.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
SCAR Code:Mouse(x,y,6,6,True);
Wait(20+Random(50));
GetMousePos(x,y);
MMouse(x,y,30,30);
Lol, something like that I guess.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Not really. If u use that then it would go to a random spot near where u clicked. The function I made would keep goin in the same direction without a noticable pause. After the click. If u don't understand. Test the script I posted b4.
^^^^^ Is that all that Human-Like?
Don't Troll, Don't Fight, Just keep the Respect
Status : Offline
Feel free to re-make my scripts ;D
Community Member
Seems like it is.
So something like a momentum mouse? One was made..., Here: http://www.villavu.com/forum/showthread.php?t=46126
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
There are currently 1 users browsing this thread. (0 members and 1 guests)