Advertisement
Guest User

Untitled

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