Jump to content

harlan

Members
  • Posts

    15
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

929 profile views

harlan's Achievements

Newbie

Newbie (1/10)

1

Reputation

  1. harlan

    My Gallery

    i get it water melon ehe h eheh e
  2. /** * Gets a experience from the level. * * @param level * The level. * @return The experience. */ public static int getXPForLevel(int level) { int points = 0; int output = 0; for (int lvl = 1; lvl <= level; lvl++) { points += Math.floor(lvl + 300.0 * Math.pow(2.0, lvl / 7.0)); if (lvl >= level) { return output; } output = (int) Math.floor(points / 4); } return 0; } ;)
  3. using the code tags makes everything it after it be deleted in some occurances
×
×
  • Create New...