When i run this while im playing rs.. and i dont move mouse .. it will move the mouse to a specific cord ... like clickmouse.. and thats very detectable so does anyone no a better way to randomaly move mouse on the screen...
SCAR Code:
program new;
{.include srl/srl.scar}
Procedure Anti;
begin
wait (2090)
MouseBox(MSx1, MSy1, MSx2, MSy2, 3);
wait(2999)
end;
Procedure IsItMoving;
var
xx,yy: integer;
begin
GetMousePos(x,y)
Wait(2000+Random(500))
GetMousePos(xx,yy)
if x=xx then
begin
if y=yy then
begin
Status('Moving Mouse')
Anti;
end;
end;
end;
begin
repeat
IsItMoving;
until(false)
end.