Advertisement
Guest User

Untitled

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