Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 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. #InstallKeybdHook
  7. #UseHook
  8.  
  9. `::
  10. SendInput, 2
  11. Random, sleepTime, 4, 8
  12. Sleep, %sleepTime%
  13. SendInput, 3
  14. Random, sleepTime, 4, 8
  15. Sleep, %sleepTime%
  16. SendInput, 4
  17. Random, sleepTime, 4, 8
  18. Sleep, %sleepTime%
  19. Random, sleepTime, 3500, 4000
  20. Sleep, %sleepTime%
  21. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement