31 lines
986 B
PHP
31 lines
986 B
PHP
<?php
|
|
$template = <<<HTML
|
|
<section>
|
|
<div class="title"><img src="/img/button_character.gif" alt="Character" title="Character"></div>
|
|
<b>{{username}}</b><br>
|
|
Level: {{level}}<br>
|
|
Exp: {{experience}}<br>
|
|
Gold: {{gold}}<br>
|
|
HP: {{currenthp}}<br>
|
|
MP: {{currentmp}}<br>
|
|
TP: {{currenttp}}<br>
|
|
{{statbars}}<br>
|
|
<a href="javascript:opencharpopup()">Extended Stats</a>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory"></div>
|
|
<img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon"> Weapon: {{weaponname}}<br>
|
|
<img src="/img/icon_armor.gif" alt="Armor" title="Armor"> Armor: {{armorname}}<br>
|
|
<img src="/img/icon_shield.gif" alt="Shield" title="Shield"> Shield: {{shieldname}}<br>
|
|
Slot 1: {{slot1name}}<br>
|
|
Slot 2: {{slot2name}}<br>
|
|
Slot 3: {{slot3name}}
|
|
</section>
|
|
|
|
<section>
|
|
<div class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells"></div>
|
|
{{magiclist}}
|
|
</section>
|
|
HTML;
|