Advertisement
Guest User

yt help

a guest
Dec 8th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance, Force
  2. SetBatchLines, -1
  3. return
  4.  
  5. TurnL1(){
  6.     start := a_tickcount
  7.     counter := 0
  8.     while ((a_tickcount - start) < 100){
  9.         MouseSpdL1( ++Counter )
  10.         sleep 1
  11.     }
  12. }
  13.  
  14.  
  15. MouseSpdL1( y ){
  16.     DllCall("mouse_event", uint, 1, int, -30, int, y, uint, 0, int, 0)
  17. }
  18.  
  19.  
  20. f2::
  21.     TurnL1()
  22.     return
  23.  
  24. *ESC::ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement