2017-02-05 10:49:37 -06:00
|
|
|
<?php
|
2024-12-12 09:33:17 -06:00
|
|
|
$template = <<<HTML
|
2024-12-12 11:28:19 -06:00
|
|
|
Here is the character profile for <b>{{username}}</b>.<br><br>
|
|
|
|
When you're finished, you may <a href="index.php">return to town</a>.<br><br>
|
2024-12-12 09:33:17 -06:00
|
|
|
<table width="200">
|
|
|
|
<tr><td class="title"><img src="images/button_character.gif" alt="Character" title="Character" /></td></tr>
|
|
|
|
<tr><td>
|
2024-12-12 11:28:19 -06:00
|
|
|
<b>{{username}}</b><br><br>
|
2017-02-05 10:49:37 -06:00
|
|
|
|
2024-12-12 11:28:19 -06:00
|
|
|
Class: {{charclass}}<br><br>
|
2017-02-05 10:49:37 -06:00
|
|
|
|
2024-12-12 11:28:19 -06:00
|
|
|
Level: {{level}}<br>
|
|
|
|
Experience: {{experience}}<br>
|
|
|
|
Gold: {{gold}}<br>
|
|
|
|
Hit Points: {{currenthp}} / {{maxhp}}<br>
|
|
|
|
Magic Points: {{currentmp}} / {{maxmp}}<br>
|
|
|
|
Travel Points: {{currenttp}} / {{maxtp}}<br><br>
|
2017-02-05 10:49:37 -06:00
|
|
|
|
2024-12-12 11:28:19 -06:00
|
|
|
Strength: {{strength}}<br>
|
|
|
|
Dexterity: {{dexterity}}<br>
|
|
|
|
Attack Power: {{attackpower}}<br>
|
|
|
|
Defense Power: {{defensepower}}<br>
|
2024-12-12 09:33:17 -06:00
|
|
|
</td></tr>
|
2024-12-12 11:28:19 -06:00
|
|
|
</table><br>
|
2017-02-05 10:49:37 -06:00
|
|
|
|
2024-12-12 09:33:17 -06:00
|
|
|
<table width="200">
|
|
|
|
<tr><td class="title"><img src="images/button_inventory.gif" alt="Inventory" title="Inventory" /></td></tr>
|
|
|
|
<tr><td>
|
|
|
|
<table width="100%">
|
|
|
|
<tr><td><img src="images/icon_weapon.gif" alt="Weapon" title="Weapon" /></td><td width="100%">Weapon: {{weaponname}}</td></tr>
|
|
|
|
<tr><td><img src="images/icon_armor.gif" alt="Armor" title="Armor" /></td><td width="100%">Armor: {{armorname}}</td></tr>
|
|
|
|
<tr><td><img src="images/icon_shield.gif" alt="Shield" title="Shield" /></td><td width="100%">Shield: {{shieldname}}</td></tr>
|
|
|
|
</table>
|
2024-12-12 11:28:19 -06:00
|
|
|
Slot 1: {{slot1name}}<br>
|
|
|
|
Slot 2: {{slot2name}}<br>
|
2024-12-12 09:33:17 -06:00
|
|
|
Slot 3: {{slot3name}}
|
|
|
|
</td></tr>
|
2024-12-12 11:28:19 -06:00
|
|
|
</table><br>
|
2024-12-12 09:33:17 -06:00
|
|
|
HTML;
|