Initial 2005 state

This commit is contained in:
2017-10-22 18:15:11 -07:00
commit bb1051e490
189 changed files with 3432 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
include("includes/experience.php");
$levels=50;
$x=0;
while($x<=$levels) {
echo "Exp $x: " . level(1, $x) . "<br>";
$x=$x+1;
}
?>