Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 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. #NoEnv
  6. SendMode Input
  7. SetWorkingDir %A_ScriptDir%
  8.  
  9. ; iloveesl
  10. NRA := 1
  11.  
  12. ; SS
  13. 4::Suspend
  14.  
  15. ; NR
  16. ~LButton::
  17. while GetKeyState("LButton") & NRA
  18. {
  19. DllCall("mouse_event", uint, 1, int, -2, int, 2, uint, 1, int, 0)
  20. Sleep, 9.5
  21. DllCall("mouse_event", uint, 1, int, 1.75, int, 1, uint, 0, int, 0)
  22. Sleep, 5
  23. }
  24. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement