Are all experience levels just the level number * 600?
If so you can just use a loop:
PHP Code:
for ($i = 1; $i <= 500; $i++) { echo 'Level ' . $i . ' - ' . ($i*600) . 'xp required<br />'; }
If not but you're levels follow a formula (as would be recommended) then you should be able to modify the loop to fit your formula.
Last edited by adam89; 03-31-2010 at 11:48 AM..
|