Guest User

Untitled

a guest
Oct 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import java.awt.Robot;
  2.  
  3. public class herp
  4. {
  5. public static void main(String[] args)
  6. {
  7. Robot toast;
  8. try
  9. {
  10. toast = new Robot();
  11. for(;;)
  12. {
  13. toast.mouseMove(40,40);
  14. toast.mouseMove(1300,40);
  15. toast.mouseMove(1300,800);
  16. toast.mouseMove(40,800);
  17. }
  18.  
  19. }
  20.  
  21. catch(Exception e)
  22. {
  23.  
  24. }
  25.  
  26.  
  27.  
  28.  
  29. }
  30. }
Add Comment
Please, Sign In to add comment