Guest User

Untitled

a guest
Jul 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. public class Main {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. String playername = "Fatass";
  6. int playerlevel = 1;
  7. int hpMAX = 10;
  8. int hp = 10;
  9. int mpMAX = 20;
  10. int mp = 20;
  11. int exptonextlvl = 2000;
  12. boolean alive = true;
  13.  
  14. hp = hp - 3;
  15. mp = mp - 7;
  16.  
  17. System.out.println(playername);
  18. System.out.println(playerlevel);
  19. System.out.println(hpMAX);
  20. System.out.println(hp);
  21. System.out.println(mpMAX);
  22. System.out.println(mp);
  23. System.out.println(exptonextlvl);
  24. System.out.println(alive);
  25.  
  26. }
  27.  
  28. }
Add Comment
Please, Sign In to add comment