= user()->username ?>
Level: = user()->level ?>
Exp: = number_format(user()->experience) ?>
Gold: = number_format(user()->gold) ?>
HP: = $hp ?>
MP: = $mp ?>
TP: = user()->currenttp ?>
= create_stat_table() ?>
Extended Stats
= user()->weaponname ?>
= user()->armorname ?>
= user()->shieldname ?>
Slot 1: = user()->slot1name ?>
Slot 2: = user()->slot2name ?>
Slot 3: = user()->slot3name ?>
spells();
if ($user_spells !== false) {
foreach ($user_spells as $spell) {
// list only healing spells for now
if ($spell['type'] === 1) echo <<{$spell['name']}
HTML;
}
} else {
echo 'None';
}
?>