1. Sleep(5000)
  2.  
  3. Run("C:\Program Files\World of Warcraft\WoW.exe")
  4. WinWaitActive("World of Warcraft")
  5. WinSetTitle("World of Warcraft", "", "1")
  6.  
  7. Run("C:\Program Files\World of Warcraft\WoW.exe")
  8. WinWaitActive("World of Warcraft")
  9. WinSetTitle("World of Warcraft", "", "2")
  10.  
  11. While 1
  12. HotKeySet("{NUMPAD1}", "One")
  13. HotKeySet("{NUMPAD2}", "Two")
  14. HotKeySet("{NUMPAD3}", "Three")
  15. HotKeySet("{NUMPAD4}", "Four")
  16. HotKeySet("{NUMPAD5}", "Fix")
  17. HotKeySet("{NUMPAD6}", "Six")
  18. HotKeySet("{NUMPAD7}", "Seven")
  19. HotKeySet("{NUMPAD8}", "Eight")
  20. HotKeySet("{NUMPAD9}", "Nine")
  21. HotKeySet("{NUMPAD0}", "Zero")
  22. WEnd
  23.  
  24. Func One()
  25. ControlSend("1", "", "", "1")
  26. ControlSend("2", "", "", "1")
  27. EndFunc
  28.  
  29. Func Two()
  30. ControlSend("1", "", "", "2")
  31. ControlSend("2", "", "", "2")
  32. EndFunc
  33.  
  34. Func Three()
  35. ControlSend("1", "", "", "3")
  36. ControlSend("2", "", "", "3")
  37. EndFunc
  38.  
  39. Func Four()
  40. ControlSend("1", "", "", "4")
  41. ControlSend("2", "", "", "4")
  42. EndFunc
  43.  
  44. Func Five()
  45. ControlSend("1", "", "", "5")
  46. ControlSend("2", "", "", "5")
  47. EndFunc
  48.  
  49. Func Six()
  50. ControlSend("1", "", "", "6")
  51. ControlSend("2", "", "", "6")
  52. EndFunc
  53.  
  54. Func Seven()
  55. ControlSend("1", "", "", "7")
  56. ControlSend("2", "", "", "7")
  57. EndFunc
  58.  
  59. Func Eight()
  60. ControlSend("1", "", "", "8")
  61. ControlSend("2", "", "", "8")
  62. EndFunc
  63.  
  64. Func Nine()
  65. ControlSend("1", "", "", "9")
  66. ControlSend("2", "", "", "9")
  67. EndFunc
  68.  
  69. Func Zero()
  70. ControlSend("1", "", "", "0")
  71. ControlSend("2", "", "", "0")
  72. EndFunc