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.
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
$template = <<<END
|
|
<table width="100%" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="175" style="vertical-align: middle;">
|
|
<table width="100%" cellspacing="2" cellpadding="0">
|
|
<tr>
|
|
<td><img src="{{charpicture}}" alt="" /></td>
|
|
<td width="100%">Level: <b>{{level}}</b> <br />
|
|
Exp: <b>{{experience}}</b><br />
|
|
Gold: <b>{{gold}}</b><br />
|
|
<a href="users.php?do=profile">Extended Profile</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td><td style="vertical-align: middle;">
|
|
{{levelup}}<br />
|
|
{{levelspell}}<br />
|
|
{{quickheal}}
|
|
</td>
|
|
</td><td style="vertical-align: middle;">
|
|
<table width="100%" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td width="33%" style="text-align: right; padding-right: 3px;">Weapon:<br />Armor:<br />Helmet:<br />Shield:</td>
|
|
<td align="left"><b>{{weapon}}</b><br /><b>{{armor}}</b><br /><b>{{helmet}}</b><br /><b>{{shield}}</b></td>
|
|
</tr>
|
|
</table>
|
|
</td><td width="200" style="vertical-align: middle;">
|
|
<table width="100%" cellspacing="0" cellpadding="0">
|
|
<tr><td align="right">{{hpbar}}</td></tr>
|
|
<tr><td align="right">{{mpbar}}</td></tr>
|
|
<tr><td align="right">{{tpbar}}</td></tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
END;
|
|
|
|
?>
|