Advertisement
Guest User

spinbot script

a guest
Sep 30th, 2016
7,953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ;Author: ShankaP
  2. ;Concept: Nunr + ShankaP
  3. ;www.youtube.com/user/ShankapotamusPC
  4. ;www.youtube.com/user/SinnerHQ
  5. #MaxHotkeysPerInterval 10000
  6. ~NumLock::Suspend, toggle
  7. ~*numpad0::
  8.  
  9. {
  10. SetMouseDelay -1
  11. while GetKeyState("numpad0")
  12. {
  13. MouseMove, 7, 0, 1, R ;<--- Change MouseMove, X to change speed.
  14. Delay(0.001)
  15. }
  16. Delay( D=0.001 )
  17. {
  18. Static numpad0
  19.  
  20. Critical
  21. numpad0 ? numpad0 : DllCall( "QueryPerformanceFrequency", Int64P,numpad0 )
  22. DllCall( "QueryPerformanceCounter", Int64P,pTick ), cTick := pTick
  23. While( ( (Tick:=(pTick-cTick)/numpad0)) < D ) {
  24. DllCall( "QueryPerformanceCounter", Int64P,pTick )
  25. Sleep -1
  26. }
  27. Return Round( Tick,3 )
  28. }
  29. }
  30.  
  31. return
  32.  
  33.  
  34. end::exitapp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement