Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1.  
  2. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  3. ; #Warn ; Enable warnings to assist with detecting common errors.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5. #IfWinActive ahk_class grcWindow ; Disables hotkeys when alt-tabbed or GTA is closed.
  6.  
  7. ; Keep Awake and Show Money
  8. F11::
  9. {
  10. Toggle := !Toggle
  11. If (Toggle = True)
  12. SetTimer, AutoZ, On
  13. Else
  14. Reload
  15. }
  16. return
  17.  
  18. AutoZ:
  19. {
  20. SplashTextOn,,, Spamming!
  21. Send z
  22. Sleep 13000
  23. SplashTextOff
  24. }
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement