Advertisement
Guest User

Untitled

a guest
Nov 14th, 2021
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function OnEvent(event, arg)
  2. if (event == "MOUSE_BUTTON_PRESSED" and arg == 4) then
  3. MoveMouseTo(46700,55000)
  4. Sleep(math.random(10, 20))
  5. PressAndReleaseMouseButton(1)
  6. end
  7.  
  8. if event == "PROFILE_ACTIVATED" then
  9. if IsModifierPressed("lshift") then
  10. PlayMacro("DPI Up")
  11. repeat
  12. Sleep(30)
  13. until not IsModifierPressed("lshift")
  14. PlayMacro("DPI Down")
  15. end
  16. Sleep(30)
  17. end
  18. end
  19.  
  20. end
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement