funkemunky

Experience Bar Cap in Minecraft 1.8.8

Apr 24th, 2021
1,488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1.  /**
  2.      * This method returns the cap amount of experience that the experience bar can hold. With each level, the
  3.      * experience cap on the player's experience bar is raised by 10.
  4.      */
  5.     public int xpBarCap()
  6.     {
  7.         return this.experienceLevel >= 30 ? 112 + (this.experienceLevel - 30) * 9 : (this.experienceLevel >= 15 ? 37 + (this.experienceLevel - 15) * 5 : 7 + this.experienceLevel * 2);
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment