hello,
i want to ask something.
i need the code for mouse random move and click so just like this :
Move > click > Keys > Click and repeat.
i already made 1 just like this :
But, the mouse still move into outside the box,
i used it for Ragnarok Online. :D
Thank's
i want to ask something.
i need the code for mouse random move and click so just like this :
Move > click > Keys > Click and repeat.
i already made 1 just like this :
Code:
HotKeySet("{F1}", "Start")
HotKeySet("{F2}", "Stop")
while 1 = 1
WEnd
Func Stop()
Exit
EndFunc
Func Start()
While 1 = 1
$moveX = random (1,500,1)
$moveY = random (1,500,1)
Mouseclick("left",$moveX,$MoveY,1,20)
Sleep (100)
Send ("2")
Sleep (100)
Mouseclick("left",$moveX,$MoveY,1,20)
WEnd
EndFunc
i used it for Ragnarok Online. :D
Thank's