Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. F3::
  2. Sleep 3000
  3. Loop
  4. {
  5. If stop = 1
  6. exitapp
  7. Else
  8. {
  9. MouseClick, Left
  10. Sleep 2000
  11. }
  12. }
  13. return ;ends your program and leaves the script running to launch again
  14. ;exitapp ;this will exit your program once the loop is stopped with break. as an alternative, you can replace break with an exitapp
  15.  
  16.  
  17.  
  18. F4::
  19. stop = 1
  20. Sleep 100
  21. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement