Which mouse functions are detectable?
Im currently using Mouse(x,y,1,1,true) and i cant really tell if its detectable or not.
Which mouse functions are detectable?
Im currently using Mouse(x,y,1,1,true) and i cant really tell if its detectable or not.
This is from someones guide forgot the name lol!
procedure MoveMouse(x, y: Integer);
Simulate mouse movement, move cursor to x, y instantly. procedure MoveMouseSmooth(x, y: Integer);
Simulate humanlike mouse movement to x, y from current mouse position.
procedure MoveMouseSmoothFrom(x1, y1, x2, y2: Integer);
Works like MoveMouseSmooth but has starting position specified. Moves mouse cursor smoothly from x1, y1 to x2, y2.
procedure MoveMouseSmoothFromEx(x1, y1, x2, y2: Integer; minsleeptime, maxsleeptime, maxdistance, gravity, forces: Integer);
Works like MoveMouseSmoothEx but has starting position specified. Moves mouse cursor smoothly from x1, y1 to x2, y2.
procedure MoveMouseSpline(x, y, rx, ry: Integer);
Similates humanlike mouse movement to x, y with a randomisation specified by rx and ry from the current mouse position. (More humanlike than MoveMouseSmooth)
procedure MouseBox(x1, y1, x2, y2: Integer);
Moves mouse (with spline) to a random coordinate in a box specified by 2 sets of coordinates x1, y1 and x2, y2. procedure ClickMouse(x, y: Integer; Left: Boolean);
Simulate mouse click at x, y.
Example:
ClickMouse(100, 30, True); // Left click at coordinates 100, 30
procedure ClickMouseMid(x, y: Integer);
Simulate a middle mouse click at x, y.
procedure ClickMouseSpline(x, y, rx, ry: Integer; Left: Boolean);
Simulate mouse click at x, y with a randomness of rx and ry.
Example:
ClickMouseSpline(100, 30, 10, 5); // Left click at a random set of coordinates between 100, 30 and 110, 35
procedure ClickMouseBox(x1, y1, x2, y2: Integer; Left: Boolean);
Simulate random mouse click in a box specified by 2 sets of coordinates x1, y1 and x2, y2.
http://www.youtube.com/user/YoHoJoSRL
Good scripting guides on youtube
Formerly known as (djcheater)
Im sorry. That does not really answer my question if "Mouse" function is detectable or not?
As far as we know, not really. I did hear someone was making a function to simulate strokes of a persons finger on a laptop touch pad... but i think they are just doing that for fun. Anyways, don't worry about it.
oh btw i was talking about the Mouse function
~ Metagen
There are currently 1 users browsing this thread. (0 members and 1 guests)