Guest User

Example

a guest
Aug 13th, 2017
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. long lastAnimation = System.currentTimeMillis();
  2.  
  3. while(System.currentTimeMillis() - lastAnimation <= 10000) {
  4.     if(myPlayer().isAnimating())
  5.         lastAnimation = System.currentTimeMillis();
  6.     sleep(50);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment