Advertisement
Guest User

Untitled

a guest
Oct 5th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetTimer, MPRotation, 1
  2. SetTimer, MPRotation, OFF
  3. MPRotate = 0
  4. Return
  5.  
  6. F12::
  7. IfEqual, MPRotate, 0
  8. {
  9. SetTimer, MPRotation, ON
  10. MPRotate=1
  11. }
  12. Else
  13. {
  14. SetTimer, MPRotation, OFF
  15. MPRotate=0
  16. }
  17. Return
  18.  
  19. MPRotation:
  20. Send {Up down}
  21. Send {Right down}
  22. Send {Up up}
  23. Send {Down down}
  24. Send {Right up}
  25. Send {Left down}
  26. Send {Down up}
  27. Send {Left up}
  28. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement