Guest User

Untitled

a guest
Jul 25th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. /* Adrenaline Rush
  2. Uses Adrenaline rush then uses Brooch & Root Beer a few moments later.
  3. Setup: Map 6 to Adrenaline Rush, V to brooch (Quatrefoil for me), F11 to Root Beer.
  4. Usage: Press 6 to automatically use Brooch/Root Beer whenever you use Adrenaline Rush.
  5. */
  6.  
  7. $6::
  8. Send {6}
  9. Sleep 1000
  10. Send {V}
  11. Send {F11}
  12. Return
  13.  
  14. /* Quick Profile Swap
  15. Uses Brooch and quickly swaps to another profile setup.
  16. Use for double brooching.
  17. Setup: Map F12 to alternate brooch, Profile Preset #1 to your main profile.
  18. Usage: Press F12 to use brooch and then immediately swap to your main gear profile.
  19. */
  20.  
  21. $F12::
  22. Send {F12}
  23. Send +{1}
  24. Return
  25.  
  26. /* Lancer Skate Macro
  27. Skate while not using any resolve. -> Auto > Block > Auto etc.
  28. Sometimes fails at high/unstable ping.
  29. Setup: Map x to Combo Atk, Numpad7 to Block.
  30. Usage: Hold x to skate.
  31. */
  32.  
  33. $x::
  34.  
  35. While ( GetKeyState( "x","P" ) ) {
  36.  
  37. Send {x}
  38.  
  39. Sleep, 140
  40.  
  41. Send {Numpad7}
  42.  
  43. }
  44. Return
  45.  
  46. /* Shield Barrage Macro
  47. Quick shield barrage.
  48. Setup: Map 1 to Shield Barrage, Numpad6 to Shield Barrage, Numpad7 to Block.
  49. Usage: Press 1 ONCE to do a quick barrage (both hits will fire). Note that you can't do single barrage anymore if using this.
  50. */
  51.  
  52. $1::
  53. Send {Numpad6}
  54. Sleep, 300
  55. Send {Numpad7}
  56. Send {Numpad6}
  57. Return
Add Comment
Please, Sign In to add comment