Warframe Slide Attack Macro v2


SUBMITTED BY: back1ply

DATE: Jan. 18, 2018, 10:05 a.m.

FORMAT: autohotkey

SIZE: 723 Bytes

HITS: 2316

  1. ;Press the "X" key to sent Ctrl+E
  2. ;You can change the "X" to any key you like
  3. ;You can change the 2nd sleep value if you find the attack "too slow"
  4. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  5. ; #Warn ; Enable warnings to assist with detecting common errors.
  6. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  7. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  8. slideAttackActive := false
  9. X::
  10. if (not slideAttackActive) {
  11. slideAttackActive := true
  12. Send, {LCtrl down}
  13. Sleep, 50
  14. Send, e
  15. Sleep, 500
  16. Send, {LCtrl up}
  17. slideAttackActive := false
  18. }
  19. Return

comments powered by Disqus