Advertisement
najwalaylah

Run Macro, from Armsoftitan

Apr 29th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Armsoftitan: http://www.mortalonline.com/forums/threads/run-macro.149376/#post-2425440
  2. Found one of the floating macros, here it is.
  3.  
  4. ^a:: ;Press Ctrl + a to start macro
  5. {
  6.  
  7. ;Runs an infinite loop until you stop it with ctrl + s
  8. loop{
  9. ;Run for 3 seconds
  10. send {w DOWN}
  11. sleep 100
  12. send {LShift DOWN}
  13. sleep 10000
  14. send {w UP}
  15. sleep 100
  16. send {LShift UP}
  17.  
  18. ;Backpeddle for 25 seconds
  19. send {s DOWN}
  20. sleep 33000
  21. send {s UP}
  22.  
  23. ;Reset Macro
  24. sleep 1000
  25. }
  26.  
  27. }
  28.  
  29. ^s:: ;Stop Macro
  30. reload
  31. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement