d529178672
8.09.2006 - Build 17 (Haiku): - Moved stylesheets into .css files. - Added javascript tooltips for the class info when creating a new character. - Changed doquery() format - rewrote all calls to this function to match the new format. - Various changes to the structure of lib.php. - Implemented Anman's increased attack and defense spells (Blessed Strike & Stone Skin). - Fixed class display in profile view. - Began admin control panel. - Various little bitty fixes. - You can no longer gamble 0 gold. - Added new level stat type: life. - Monsters can now do excellent hits, and you can now dodge monsters. - Removed several columns from controlrow that are no longer used.
17 lines
715 B
PHP
17 lines
715 B
PHP
<?php
|
|
|
|
$template = <<<END
|
|
You have Level Points to spend. Different character classes get extra bonuses to certain stats from level points. Your stat bonuses are listed below. Note that any fractions are rounded down, so it's in your best interest to make sure you're getting the most out of your level points.<br /><br />
|
|
Class: {{classname}}<br />
|
|
Damage Per Strength: {{damageperstrength}}<br />
|
|
Defense Per Dexterity: {{defenseperdex}}<br />
|
|
HP Per Life: {{hpperlife}}<br />
|
|
MP Per Energy: {{mpperenergy}}<br /><br />
|
|
You have <b>{{levelup}} point(s)</b> to spend.<br /><br />
|
|
<form action="users.php?do=levelup" method="post">
|
|
{{dropdowns}}
|
|
<input type="submit" name="submit" value="Submit" />
|
|
</form>
|
|
END;
|
|
|
|
?>
|