47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
$template = <<<THEVERYENDOFYOU
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="/img/button_character.gif" alt="Character" title="Character" /></td></tr>
|
|
<tr><td>
|
|
<b>{{username}}</b><br><br>
|
|
|
|
Class: {{charclass}}<br><br>
|
|
|
|
Level: {{level}}<br>
|
|
Experience: {{experience}} {{plusexp}}<br>
|
|
Next Level: {{nextlevel}}<br>
|
|
Gold: {{gold}} {{plusgold}}<br>
|
|
Hit Points: {{currenthp}} / {{maxhp}}<br>
|
|
Magic Points: {{currentmp}} / {{maxmp}}<br>
|
|
Travel Points: {{currenttp}} / {{maxtp}}<br><br>
|
|
|
|
Strength: {{strength}}<br>
|
|
Dexterity: {{dexterity}}<br>
|
|
Attack Power: {{attackpower}}<br>
|
|
Defense Power: {{defensepower}}<br>
|
|
</td></tr>
|
|
</table><br>
|
|
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory" /></td></tr>
|
|
<tr><td>
|
|
<table width="100%">
|
|
<tr><td><img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon" /></td><td width="100%">Weapon: {{weaponname}}</td></tr>
|
|
<tr><td><img src="/img/icon_armor.gif" alt="Armor" title="Armor" /></td><td width="100%">Armor: {{armorname}}</td></tr>
|
|
<tr><td><img src="/img/icon_shield.gif" alt="Shield" title="Shield" /></td><td width="100%">Shield: {{shieldname}}</td></tr>
|
|
</table>
|
|
Slot 1: {{slot1name}}<br>
|
|
Slot 2: {{slot2name}}<br>
|
|
Slot 3: {{slot3name}}
|
|
</td></tr>
|
|
</table><br>
|
|
|
|
<table width="100%">
|
|
<tr><td class="title"><img src="/img/button_spells.gif" alt="Spells" title="Spells" /></td></tr>
|
|
<tr><td>
|
|
{{magiclist}}
|
|
</td></tr>
|
|
</table><br>
|
|
THEVERYENDOFYOU;
|
|
?>
|