moprpg/level.php

20 lines
146 B
PHP
Raw Normal View History

2017-10-22 18:15:11 -07:00
<?php
include("includes/experience.php");
$levels=50;
$x=0;
while($x<=$levels) {
echo "Exp $x: " . level(1, $x) . "<br>";
$x=$x+1;
}
?>