Advertisement
AnimatorOfSouls

(AHK) Right Click Every 0.75s

Jul 29th, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Was made to use this fish farm on a server: https://www.youtube.com/watch?v=d3hERd5mZAM
  2. replace "XButton1" with whatever key you're using - press once to activate, press again to deactivate.
  3. To use, copy everything below this sentence, starting with line 1, "#MaxThreadsPerHotkey 2"
  4.  
  5. #MaxThreadsPerHotkey 2
  6. XButton1::
  7. Toggle := !Toggle
  8. loop
  9. {
  10. If not Toggle
  11. break
  12. Click Right
  13. sleep 750
  14. }
  15. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement