Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Loop,
  2. {
  3. if (BreakLoop = 1)
  4. break
  5. Random, randpress, 500, 2000
  6. Random, randdelay, 1000, 2000
  7. Random, var, 1,4
  8. if var = 1
  9. Send {up down}
  10. Sleep %randpress%
  11. Send {up up}
  12. Sleep %randdelay%
  13. if var = 2
  14. Send {down down}
  15. Sleep %randpress%
  16. Send {down up}
  17. Sleep %randdelay%
  18. if var = 3
  19. Send {left down}
  20. Sleep %randpress%
  21. Send {left up}
  22. Sleep %randdelay%
  23. if var = 4
  24. Send {right down}
  25. Sleep %randpress%
  26. Send {right up}
  27. Sleep %randdelay%
  28. }
  29. Esc::
  30. BreakLoop = 1
  31. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement