Advertisement
Guest User

Op

a guest
May 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. EnablePrimaryMouseButtonEvents(true);
  2.  
  3. function OnEvent(event, arg)
  4. if IsMouseButtonPressed(1) then
  5. repeat
  6. PressMouseButton(1)
  7. Sleep(5)
  8. MoveMouseRelative(-9,10)
  9. Sleep(17)
  10. MoveMouseRelative(9,-10)
  11. Sleep(10)
  12. until not IsMouseButtonPressed(1)
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement