0f3f0dc8ed
09.03.2006 - Build 18 (Joe Camel): - Fixed function redeclaration with Blessed Strike & Stone Skin spells. - When you're all alone, you no longer have a little blue "undefined" orb to keep you company. - Changing worlds after a quest now gives you the world's starting town to avoid panel errors. - Minor optimization fix for item building. - Unique items no longer drop with prefixes/suffixes, and you can no longer buy unique items. - Removed alphanumeric requirement for passwords. - hpleech(monster) now properly accounts for difficulty multiplier when checking against the monster's maxhp. - Added Deposit/Withdraw All links to the Bank. - Fixed PVP and Post office bugs related to the new doquery syntax. - Fixed single-quote bugs in mymail(). - Removed verbiage from the levelup template that was no longer necessary. - Fixed some more verbiage in the registration message that was also no longer necessary. - Added admin-definable cookie name and cookie domain to controlrow.
17 lines
580 B
PHP
17 lines
580 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.<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;
|
|
|
|
?>
|