Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. InputBox, time, Wait time, delay min 1320
  2. InputBox, random, Random, random intervall 1200+ angabe -random am besten 50-100
  3. MsgBox,`nF1 - Start`nF2 - Restart`nF3 - Exit
  4.  
  5. F1::Start()
  6. F2::Reload
  7. F3::ExitApp
  8.  
  9. Start()
  10. {
  11. Global
  12. Loop
  13. {
  14. MouseGetPos, x, y
  15. Random, rx, -5, 5
  16. Random, ry, -5, 5
  17. MouseClick, left, x+rx, y+ry
  18.  
  19. MouseMove, x, y
  20. Random, rt, -random, random
  21. Sleep, time+rt
  22. Random count, 0, 10
  23. if(count==5){
  24. Sleep, 200,
  25. MouseClick, left, 741, 218
  26. Sleep, 88
  27. MouseClick, left, 717, 363
  28. Sleep, 55
  29. }
  30.  
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement