Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #NoEnv  
  3.  
  4. ; Enable warnings to assist with detecting common errors.
  5. #Warn  
  6.  
  7. ; Recommended for new scripts due to its superior speed and reliability.
  8. SendMode Input  
  9.  
  10. ; Ensures a consistent starting directory.
  11. SetWorkingDir %A_ScriptDir%  
  12.  
  13. ; -----------------------------------------------------------------------------------
  14.  
  15. #IfWinActive WARFRAME
  16. ; Hit escape -------
  17. F1::
  18. send {Escape}
  19. sleep 400
  20.  
  21. ; Go to Equipment ---------
  22. Send {Down}{Down}{Enter}
  23.  
  24. ; Done! --------------
  25. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement