Advertisement
ToMoKoKo

Meepo script

Jun 2nd, 2015
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  3. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  4.  
  5. #ifWinActive ahk_class Warcraft III
  6.  
  7. #SingleInstance Force
  8.  
  9.  
  10. ~*Enter::Suspend
  11. ~*NumpadEnter::Suspend ;;'Enter' for chat will pause the script;;
  12.  
  13.  
  14. ~*Esc::Suspend, Off ;;Press 'Esc' to activate the script again, if chat canceled by click;;
  15.  
  16.  
  17.  
  18.  
  19. ;;Poofs all meepos to the nearest one to your mouse pointer.U have to select all meepos.;;
  20.  
  21.  
  22.  
  23.  
  24. g::
  25. Send {w}{Lbutton}
  26. Send {TAB}
  27. Sleep 30
  28. Send {w}{Lbutton}
  29. Send {TAB}
  30. Sleep 30
  31. Send {w}{Lbutton}
  32. Send {TAB}
  33. Sleep 30
  34. Send {w}{Lbutton}
  35. Send {TAB}
  36. Sleep 30
  37. Send {w}{Lbutton}
  38. Send {TAB}
  39. return
  40.  
  41.  
  42.  
  43. ;;;; Poof all meepos to a single one ;;;;
  44.  
  45. t::Send {F2}{w}{Click 10, 50}{F3}{w}{Click 10, 50}{f4}{w}{Click 10, 50}{f5}{w}{Click 10, 50}{f1}{w}{Click 10, 50}{click 400, 250, 0}
  46.  
  47. y::Send {F2}{f}{Click 10, 100}{F3}{f}{Click 10, 100}{f4}{f}{Click 10, 100}{f5}{w}{Click 10, 50}{f1}{w}{Click 10, 50}{click 400, 250, 0}
  48.  
  49. 3::Send {F2}{f}{Click 10, 150}{F3}{f}{Click 10, 150}{f4}{f}{Click 10, 150}{{f5}{w}{Click 10, 50}{f1}{w}{Click 10, 50}{click 400, 250, 0}
  50.  
  51. 4::Send {F2}{f}{Click 10, 200}{F3}{f}{Click 10, 200}{f4}{f}{Click 10, 200}{f5}{w}{Click 10, 50}{f1}{w}{Click 10, 50}{click 4000, 250, 0}
  52.  
  53.  
  54.  
  55.  
  56.  
  57. ;; Transfer items with ` (Collect,Burst and Transfer).Protect courier with Capslock (Courier Shield, Burst) ;;
  58.  
  59.  
  60. `::
  61. Send {F8} ;won't work if courier is already moving and it isn't selected;
  62. Sleep 100
  63. Send ytr{F1}{F1}
  64. return
  65.  
  66. Capslock:: ;won't work if courier is already moving and it isn't selected;
  67. Send {F8}
  68. Sleep 100
  69. Send rc
  70. return
  71.  
  72. Space::tab
  73.  
  74. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  75. ;; ;;
  76. ;; 1,2,3,4 : poof all meepo at the first/second/third/forth one. ;;
  77. ;; ;;
  78. ;; q : Poof all selected meepos ;;
  79. ;; ;;
  80. ;; ` : transfer items with courier (+burst) ;;
  81. ;; ;;
  82. ;; Capslock : activate burst and courier shield, when courier selected ;;
  83. ;; ;;
  84. ;; ;;
  85. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  86.  
  87. ;; Enter for chat will pause script.;; ;;;;;;;;;;;;;;;
  88. ;; Works fine at Vista ;) ;; ;; By TomoKo ;;
  89. ;;;;;;;;;;;;;;;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement