| NamePros Regular Name: Derek Location: Seattle, Wa Join Date: Jul 2004
Posts: 597
NP$: 69.00 ( Donate)
| This is the formula I use for my game
$k is level. PHP Code: <?php
for($k = 1; $k <= 1000; $k++)
{
$exp = (3/4) * ((50/3) * pow($k, 3) - 100 * pow($k, 2) + ((850/3) * $k) - 200);
echo $k.": ".$exp."<br>";
}
?>
Levels 1-1000
Just change the formula a little bit depending on your liking. |