Dragon-Knight/templates/rightnav.php

28 lines
1.1 KiB
PHP
Raw Normal View History

2024-12-13 12:51:10 -06:00
<section>
<div class="title"><img src="/img/button_character.gif" alt="Character" title="Character"></div>
2024-12-17 22:10:49 -06:00
<b><?= user()->username ?></b><br>
Level: <?= user()->level ?><br>
Exp: <?= user()->experience ?><br>
Gold: <?= user()->gold ?><br>
HP: <?= user()->currenthp ?><br>
MP: <?= user()->currentmp ?><br>
TP: <?= user()->currenttp ?><br><br>
<?= $statbars ?><br>
2024-12-13 12:51:10 -06:00
<a href="javascript:opencharpopup()">Extended Stats</a>
</section>
2024-12-13 12:51:10 -06:00
<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: <?= $user['weaponname'] ?><br>
<img src="/img/icon_armor.gif" alt="Armor" title="Armor"> Armor: <?= $user['armorname'] ?><br>
<img src="/img/icon_shield.gif" alt="Shield" title="Shield"> Shield: <?= $user['shieldname'] ?><br>
Slot 1: <?= $user['slot1name'] ?><br>
Slot 2: <?= $user['slot2name'] ?><br>
Slot 3: <?= $user['slot3name'] ?>
2024-12-13 12:51:10 -06:00
</section>
2024-12-13 12:51:10 -06:00
<section>
<div class="title"><img src="/img/button_fastspells.gif" alt="Fast Spells" title="Fast Spells"></div>
<?= $user['magiclist'] ?>
2024-12-13 12:51:10 -06:00
</section>