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>
|
2024-12-18 10:00:41 -06:00
|
|
|
Exp: <?= number_format(user()->experience) ?><br>
|
|
|
|
Gold: <?= number_format(user()->gold) ?><br>
|
|
|
|
HP: <?= $hp ?><br>
|
|
|
|
MP: <?= $mp ?><br>
|
2024-12-17 22:10:49 -06:00
|
|
|
TP: <?= user()->currenttp ?><br><br>
|
2024-12-18 10:00:41 -06:00
|
|
|
<?= create_stat_table() ?><br>
|
2024-12-13 12:51:10 -06:00
|
|
|
<a href="javascript:opencharpopup()">Extended Stats</a>
|
|
|
|
</section>
|
2017-02-05 10:49:37 -06:00
|
|
|
|
2024-12-13 12:51:10 -06:00
|
|
|
<section>
|
|
|
|
<div class="title"><img src="/img/button_inventory.gif" alt="Inventory" title="Inventory"></div>
|
2024-12-18 17:00:23 -06:00
|
|
|
<img src="/img/icon_weapon.gif" alt="Weapon" title="Weapon"> <?= user()->weaponname ?><br>
|
|
|
|
<img src="/img/icon_armor.gif" alt="Armor" title="Armor"> <?= user()->armorname ?><br>
|
|
|
|
<img src="/img/icon_shield.gif" alt="Shield" title="Shield"> <?= user()->shieldname ?><br>
|
2024-12-18 10:00:41 -06:00
|
|
|
Slot 1: <?= user()->slot1name ?><br>
|
|
|
|
Slot 2: <?= user()->slot2name ?><br>
|
|
|
|
Slot 3: <?= user()->slot3name ?>
|
2024-12-13 12:51:10 -06:00
|
|
|
</section>
|
2017-02-05 10:49:37 -06:00
|
|
|
|
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>
|
2024-12-18 10:00:41 -06:00
|
|
|
<?php
|
|
|
|
$user_spells = user()->spells();
|
|
|
|
if ($user_spells !== false) {
|
|
|
|
foreach ($user_spells as $spell) {
|
|
|
|
// list only healing spells for now
|
2024-12-19 09:12:54 -06:00
|
|
|
if ($spell['type'] === 1) echo <<<HTML
|
|
|
|
<a href="/spell/{$spell['id']}" hx-get="/spell/{$spell['id']}" hx-target="#middle">{$spell['name']}</a><br>
|
|
|
|
HTML;
|
2024-12-18 10:00:41 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo 'None';
|
|
|
|
}
|
|
|
|
?>
|
2024-12-13 12:51:10 -06:00
|
|
|
</section>
|