Guest User

Untitled

a guest
Jan 1st, 2021
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. positions := [[910,490],[960,490],[1010,490],[1010,540],[1010,590],[960,590],[910,590],[910,540],[960,540]]
  2. curPos := 1
  3.  
  4. F11::
  5. startTime := A_TickCount
  6. KeyWait, F11, T0.3
  7. elapsed := A_TickCount - startTime
  8. if (elapsed >= 280){
  9.     send {click down}
  10.     sleep 50
  11.     send {click up}
  12.     sleep 300
  13. }
  14. if (curPos > positions.Length()){
  15.     curPos := 1
  16. }
  17. MouseMove, positions[curPos][1], positions[curPos][2]
  18. curPos++
  19. return
Advertisement
Add Comment
Please, Sign In to add comment