Advertisement
Poppamunz

AutoHotkey clicker

Jan 25th, 2014
6,815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #MaxThreadsPerHotkey 3
  2. F6::  ; Change this hotkey to suit your preferences.
  3. #MaxThreadsPerHotkey 1
  4. if KeepClickerRunning
  5. {
  6.     KeepClickerRunning := false
  7.     return
  8. }
  9. ; Otherwise:
  10. KeepClickerRunning := true
  11. Loop
  12. {
  13.     Click
  14.     if not KeepClickerRunning
  15.         break
  16. }
  17. KeepClickerRunning := false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement