Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. flKeepLooping := 0
  7.  
  8. Loop {
  9. if (flKeepLooping = 1) {
  10. ControlSend, , {Numpad0}, ahk_class FFXIVGAME
  11. Sleep 500
  12. }
  13. }
  14.  
  15. ^z::
  16. if flKeepLooping = 1z
  17. flKeepLooping = 0
  18. else
  19. flKeepLooping = 1
  20. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement