Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #NoEnv
  2. SendMode Input
  3.  
  4. Insert:: Hotkey, *~$LButton, Toggle
  5.  
  6. *~$LButton::
  7. while GetKeyState("LButton")
  8. {
  9. DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
  10. Sleep, 5
  11. DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
  12. Sleep, 5
  13. }
  14. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement