Guest User

Untitled

a guest
May 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. HotKeySet("'", "MouseSpam")
  2. HotKeySet("\", "BackSword")
  3.  
  4. $mousespam = False
  5. $backsword = False
  6.  
  7. While True
  8. if $mousespam = True Then
  9. MouseClick("right")
  10.  
  11. if $backsword = True Then
  12. MouseClick("left")
  13. EndIf
  14. EndIf
  15.  
  16. Sleep(50)
  17. WEnd
  18.  
  19. Func MouseSpam()
  20. if $mousespam = False Then
  21. $mousespam = True
  22. Else
  23. $mousespam = false
  24. EndIf
  25. EndFunc
  26.  
  27. Func BackSword()
  28. if $backsword = False Then
  29. $backsword = True
  30. Else
  31. $backsword = false
  32. EndIf
  33. EndFunc
Add Comment
Please, Sign In to add comment