Advertisement
Maze_EQ

AllyBot

Apr 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5.  
  6. #SingleInstance force
  7. #Persistent
  8. Tooltip, Insert Warrior here, 150, 150
  9. SetKeyDelay, 15, 15
  10. KeyWait, Delete, D
  11. WinGet, Allyeren, ID, A
  12. ToolTip, , 150, 150
  13. Sleep 500
  14. Random, rtime, 4000, 10000
  15.  
  16. ControlSend, , {esc}, ahk_id %Allyeren%
  17. ControlSend, , {2}, ahk_id %Allyeren%
  18. ControlSend, , {3}, ahk_id %Allyeren%
  19. ControlSend, , {4}, ahk_id %Allyeren%
  20. ControlSend, , {5}, ahk_id %Allyeren%
  21. ControlSend, , {6}, ahk_id %Allyeren%
  22. ControlSend, , {esc}, ahk_id %Allyeren%s
  23.  
  24. SetTimer, Swing, 334
  25. SetTimer, Taunt, 12000
  26. SetTimer, Buffs, 10000
  27. F3::Pause
  28. return
  29.  
  30. Swing:
  31. ControlSend, , {space}, ahk_id %Allyeren%
  32. return
  33.  
  34. Taunt:
  35. ControlSend, , {esc}, ahk_id %Allyeren%
  36. ControlSend, , {1}, ahk_id %Allyeren%
  37. ControlSend, , {enter}, ahk_id %Allyeren%
  38. ControlSend, , {esc}, ahk_id %Allyeren%
  39. return
  40.  
  41. Buffs:
  42. ControlSend, , {esc}, ahk_id %Allyeren%
  43. ControlSend, , {2}, ahk_id %Allyeren%
  44. ControlSend, , {3}, ahk_id %Allyeren%
  45. ControlSend, , {4}, ahk_id %Allyeren%
  46. ControlSend, , {5}, ahk_id %Allyeren%
  47. ControlSend, , {6}, ahk_id %Allyeren%
  48. ControlSend, , {esc}, ahk_id %Allyeren%
  49. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement