Thread: Mining
View Single Post
  #15  
Old 03-05-2007, 08:36 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
I made a pretty nice formula:
Level: 1- 1exp
Level: 2- 25exp
Level: 3- 144exp
Level: 4- 484exp
Level: 5- 1225exp
Level: 6- 2601exp
Level: 7- 4900exp
Level: 8- 8281exp
Level: 9- 13225exp
Level: 10- 20164exp

HTML Code:
function onCreated()
  for (temp.i = 1; temp.i <= 10; temp.i++)
    this.checkEXP(temp.i);
function checkEXP(playerLevel)
  {
  temp.currentFormule = int(((temp.playerLevel ^ 2) / 70) * 100) ^ 2;
  echo("Level: "@ temp.playerLevel @": "@ temp.currentFormule @"exp");
  }
Reply With Quote