Advertisement
Guest User

Timer

a guest
Jan 31st, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package fr.picalinse.test;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Main extends JavaPlugin{
  6.  
  7. public int time;
  8. int episode = 1;
  9. int minutes = 19;
  10. public int compte = 1200;
  11.  
  12. public void timer()
  13. {
  14. if(compte > 0)
  15. {
  16. compte--;
  17. }else{
  18. compte = 1200;
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement