bcc5476d1f
2.04.2006 - Build 13 (Unlucky): - - Dying now properly takes you back to the actual lat/lon of the world's first town (rather than 0,0 every time). - Added 160+ new monsters for the later realms. - Buy Maps now correctly only shows available maps from the Realm you're in. - Fixed some weirdness with the Travel To menu in the second Realm. - Added storyline/quests. - Added item drops from monsters. - Monsters now have a chance to swing first, and to block you from running. - Added Quick Heal to panel_bottom. - Users who are already a member of a guild no longer see the "Apply to Join" link on the Guild List page. - Added Honor Points to guilds. * plus 1 point per member. * plus floored square root of total combined member experience. * plus 2 points per member PVP win. * minus 1 point per member PVP loss. * Calculated every 24 hours automatically, and upon every approve/remove/leave. * Displayed on the Guild List page. - Added stats for your current items on the first Buy screen. - You cannot create/join a guild until Level 10 to help prevent bank abuse. - Added PVP logging - wins, losses, and highest lvl character killed. - Hall of Fame now shows top 25 chars. - Hall of Fame now uses stock mysql_fetch_array() instead of custom dorow(). - Items now have a 1 in 5 chance of having prefixes/suffixes (it used to be 50:50). - Added email verification support.
51 lines
1.8 KiB
PHP
51 lines
1.8 KiB
PHP
<?php
|
|
|
|
$template = <<<END
|
|
<center><table width="90%"><tr>
|
|
<td colspan="2" style="border-bottom: solid 1px #cccccc">
|
|
<center>{{profcharpicture}}<br /><b>{{newcharname}}</b><br /></center>
|
|
</td></tr>
|
|
<tr>
|
|
<td width="50%">
|
|
Class: <b>{{charclass}}</b><br />
|
|
Gold: <b>{{formatgold}}</b> <span class="grey">{{goldbonus}}</span><br />
|
|
Level: <b>{{level}}</b><br />
|
|
Experience: <b>{{formatexperience}}</b> <span class="grey">{{expbonus}}</span><br />
|
|
Next Level: <b>{{formatnextlvl}}</b><br /><br />
|
|
|
|
Hit Points: <b>{{currenthp}} / {{maxhp}}</b><br />
|
|
Magic Points: <b>{{currentmp}} / {{maxmp}}</b><br />
|
|
Travel Points: <b>{{currenttp}} / {{maxtp}}</b><br /><br />
|
|
|
|
Weapon: <b>{{item1name}}</b><br />
|
|
Armor: <b>{{item2name}}</b><br />
|
|
Shield: <b>{{item4name}}</b><br />
|
|
Helmet: <b>{{item3name}}</b><br />
|
|
</td>
|
|
<td>
|
|
Strength: <b>{{strength}}</b><br />
|
|
Dexterity: <b>{{dexterity}}</b><br />
|
|
Physical Damage: <b>{{physattack}}</b><br />
|
|
Physical Defense: <b>{{physdefense}}</b><br /><br />
|
|
|
|
Energy: <b><span style="color:green">{{energy}}</style></b><br />
|
|
Magic Damage: <b><span style="color: green">{{magicattack}}</span></b><br />
|
|
Magic Defense: <b><span style="color: green">{{magicdefense}}</span></b><br /><br />
|
|
|
|
Fire Damage: <b><span style="color: red">{{fireattack}}</span></b><br />
|
|
Fire Defense: <b><span style="color: red">{{firedefense}}</span></b><br /><br />
|
|
|
|
Lightning Damage: <b><span style="color: blue">{{lightattack}}</span></b><br />
|
|
Lightning Defense: <b><span style="color: blue">{{lightdefense}}</span></b><br /><br />
|
|
|
|
Duels Won: <b>{{pvpwins}}</b><br />
|
|
Duels Lost: <b>{{pvplosses}}</b><br />
|
|
Highest Character Defeated: <b>{{pvphighest}}</b><br /><br />
|
|
</td>
|
|
</tr><tr>
|
|
<td colspan="2" style="border-top: solid 1px #cccccc"><center><a href="index.php">Return to the game.</a></center></td>
|
|
</tr></table></center>
|
|
END;
|
|
|
|
?>
|