Advertisement
Guest User

Untitled

a guest
Oct 4th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Prospecting/milling
  2. prospectLast := A_TickCount
  3. $!^[::
  4.     if WinActive("World of Warcraft")
  5.     {
  6.         Loop
  7.         {
  8.             if GetKeyState("]", "P")
  9.             {
  10.                 break
  11.             }
  12.             elapsed := A_TickCount - prospectLast
  13.             if elapsed > 2900
  14.             {
  15.                 ControlSend, , {Alt down}1{Alt up}, World of Warcraft
  16.                 prospectLast := A_TickCount
  17.             }
  18.             sleep 100
  19.         }
  20.     }
  21.     return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement