Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ResummonTime := 0
  2. PowerupTime := 0
  3.  
  4. sleep 7000
  5. Loop {
  6. OutputDebug, Resummon time = ResummonTime
  7. OutputDebug, Powerup time = PowerupTime
  8. Send, <
  9. sleep 1000
  10. ResummonTime:=ResummonTime-1
  11. PowerupTime:=PowerupTime-1
  12. if (ResummonTime<1)
  13. {
  14. ResummonTime := 260
  15. Send, {F7}
  16. sleep 1000
  17. Send, {F8}
  18. sleep 1000
  19. Send, {F6}
  20. PowerupTime:=PowerupTime-2
  21. }
  22.  
  23. if (PowerupTime<1)
  24. {
  25. PowerupTime := 482
  26. Send, {F9}
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement