Advertisement
Guest User

Untitled

a guest
Jun 13th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. HotKeySet("{DELETE}", "clicker")
  2.  
  3. $active=False
  4.  
  5. Func clicker()
  6. If $active Then
  7. $active=False
  8. Else
  9. $active=True
  10. EndIf
  11. EndFunc
  12.  
  13. While 1
  14. If $active Then
  15. MouseClick("left")
  16. Sleep(20)
  17. Else
  18. Sleep(50)
  19. EndIf
  20. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement