Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. new BukkitRunnable() {
  2. int timeLeft = 4;
  3. public void run() {
  4. //do stuff
  5. if(--timeLeft <= 0) this.cancel();
  6. }
  7. }.runTaskTimer(this, 20L, 20L);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement