Advertisement
tabnation

ahk anti afk

Aug 19th, 2021
6,548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #MaxThreadsPerHotkey 2
  2. InputBox, VarTime, Enter time, Type the time in seconds
  3. VarTime := VarTime*1000
  4. Return
  5.  
  6. F1::
  7. toggle := !toggle
  8. While (toggle)
  9. {
  10. send {w down}
  11. sleep 2000
  12. send {w up}
  13. sleep %VarTime%
  14. send {s down}
  15. sleep 2000
  16. send {s up}
  17. }
  18. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement