Advertisement
Guest User

randommouse

a guest
Jun 6th, 2013
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CoordMode,Mouse,Screen ;Coordinates in relation to entire 1440x900 screen
  2. BlockInput,MouseMove ;Real life mouse stops working, starts working after script ends
  3. Loop
  4. {
  5.     random,ranx,0,1440 ;Random x coordinates
  6.     random,rany,0,900 ;Random y coordinates
  7.     random,rans,1,10 ;Random mouse speed
  8.     mousemove,ranx,rany,rans ;mouse move
  9. }
  10. ^x:: ExitApp ;Ctrl+x to exit the script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement