Advertisement
Karrandalf

WC3-RightSide.AHK

Feb 6th, 2020
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. #SingleInstance force ;; force a single instance
  2. #MaxThreadsPerHotkey 255
  3. SetBatchLines, -1 ;; makes the script run at max speed
  4. SetTitleMatchMode Regex
  5.  
  6. #ifWinActive ahk_class ((WarcraftIII)|(OsWindow)|(Qt5QWindowIcon))
  7.  
  8. F1::F9 ;; Quests
  9. F2::F10 ;; Menu
  10. F3::F11 ;; Allies
  11. F4::F12 ;; Chat
  12.  
  13. ;F6::F6 ;; Ally 3rd Hero
  14. F7::F5 ;; Ally 2nd Hero
  15. F8::F4 ;; Ally 1st Hero
  16.  
  17. F9::F1 ;; 1st Hero
  18. F10::F2 ;; 2nd Hero
  19. F11::F3 ;; 3rd Hero
  20. F12::F11 ;; Allies
  21.  
  22. -::1 ;; Control Group
  23. =::2 ;; Control Group
  24. \::TAB ;; Cycle Unit Subgroups
  25. ]::` ;; Idle Workers Select
  26.  
  27. ;; Disabled Menu and Minimap Commands
  28. !q::return ;; Quit Menu
  29. !o::return ;; Options Menu
  30. !l::return ;; Load Menu
  31. !h::return ;; Help Menu
  32. !r::return ;; Toggle Creep Display
  33. !f::return ;; Toggle Formation Movement
  34. !t::return ;; Toggle Terrain
  35. !g::return ;; Minimap Signal
  36. ^s::return ;; Toggle SFX
  37. ^m::return ;; Toggle Music
  38.  
  39. ;; These ones are currently enabled. Remove the first ";" in the line to disable.
  40. ;!s::return ; Save menu
  41. ;!a::return ; AllyColor Mode
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement