I have tried "MouseSpeed:= 10" but still moves way too fast.
Printable View
I have tried "MouseSpeed:= 10" but still moves way too fast.
lol MouseSpeed is a varibale for mouse, not movemousesmooth. movemousesmooth is a predefined functrion, so u cannot modify it
use
but change movespeed to whatever fits your needs.Code:MoveMouseSmoothEx(x,y, 2, 4, movespeed, 20, 10)
btw if you are trying to make a script for rs with movemousesmooth.. it is very detectable. Just a heads up :D
put
SCAR Code:{.include SRL\SRL.scar}
at the top of your script, then put
once at the beginning of your script,SCAR Code:SetupSRL;
use the procedure
MMouse(dx,dy,randx,randy:integer);
dx,dy are the x and y co-ordinates to move to,
randx,randy are the random added to dx,dy
example: MMouse(600,600,10,10);
the procedure
Mouse(dx,dy,randx,randy:integer;left:boolean);
does the same thing, except it clicks at the end of its movement
the last parimeter, chooses left or right click.
true makes it left click, false makes it right click
Thanks everyone.