Advertisement
Nilt

TSW Taco Farm

Jan 26th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. ;First, download and install AutoHotKey from here: http://ahkscript.org/
  2. ;Once that is installed, copy everything here into a text file and make the extension .ahk
  3. ;You can then double click it to run.
  4. ;
  5. ;This allows you to press Shift and the / on the NumPad to begin constantly eating tacos.
  6. ;assuming you have placed tacos in the first location on the shortcut bar.
  7. ;
  8. ;You only really need to copy everything below this line.
  9. ; The Secret World Taco Farm
  10. #MaxThreadsPerHotkey 1
  11. #NoEnv
  12. SendMode Input
  13. #IfWinActive The Secret World
  14.  
  15. ; Press Ctrl+Shift and the / on the Numpad to reload the script, halting the Taco Farm.
  16. ^+NumpadDiv::
  17. Reload
  18.  
  19. ; Automatically eat tacos! Place a stack in position one of the shortcut bar.
  20. ; Then press Shift and the / on the Numpad to start eating tacos.
  21. ; To stop, press the hotkey again.
  22. +NumpadDiv::
  23. if AutoTaco ;This means an underlying thread is already running the loop below.
  24. {
  25. AutoTaco := false
  26. return
  27. }
  28. ; Otherwise:
  29. AutoTaco := true
  30. Loop
  31. {
  32. #IfWinActive The Secret World
  33. Send {F1}
  34. Sleep 5250
  35. if not AutoTaco
  36. break
  37. }
  38. AutoTaco := false
  39. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement