Dragon-Scourge/templates/users_profile.php
Jamin Blount e1b9948505 Beta 2 Build 12
12.10.2005 - Build 12 (Eggs):
- Members can now leave the Guild without requiring an officer to demote
them to zero.
- Rank 5 members can now edit/update Guild settings.
- # of Members is now set to 1 when a Guild is created, and updated
correctly when an application is approved.
- The Guild founder is now notified via the Post Office when someone
applies to join.
- Members can now arbitrarily deposit money to the Guild bank.
- You can no longer send guild money to yourself. Checks and balances,
man!
- Fixed image format selection so that it actually works.
- Removed Language selection from account registration/settings.
2017-02-05 11:51:02 -06:00

47 lines
1.7 KiB
PHP

<?php
$template = <<<END
<center><table width="90%"><tr>
<td colspan="2" style="border-bottom: solid 1px #cccccc">
<center>{{profcharpicture}}<br /><b>{{newcharname}}</b><br /></center>
</td></tr>
<tr>
<td width="50%">
Class: <b>{{charclass}}</b><br />
Gold: <b>{{formatgold}}</b> <span class="grey">{{goldbonus}}</span><br />
Level: <b>{{level}}</b><br />
Experience: <b>{{formatexperience}}</b> <span class="grey">{{expbonus}}</span><br />
Next Level: <b>{{formatnextlvl}}</b><br /><br />
Hit Points: <b>{{currenthp}} / {{maxhp}}</b><br />
Magic Points: <b>{{currentmp}} / {{maxmp}}</b><br />
Travel Points: <b>{{currenttp}} / {{maxtp}}</b><br /><br />
Weapon: <b>{{item1name}}</b><br />
Armor: <b>{{item2name}}</b><br />
Shield: <b>{{item4name}}</b><br />
Helmet: <b>{{item3name}}</b><br />
</td>
<td>
Strength: <b>{{strength}}</b><br />
Dexterity: <b>{{dexterity}}</b><br />
Physical Damage: <b>{{physattack}}</b><br />
Physical Defense: <b>{{physdefense}}</b><br /><br />
Energy: <b><span style="color:green">{{energy}}</style></b><br />
Magic Damage: <b><span style="color: green">{{magicattack}}</span></b><br />
Magic Defense: <b><span style="color: green">{{magicdefense}}</span></b><br /><br />
Fire Damage: <b><span style="color: red">{{fireattack}}</span></b><br />
Fire Defense: <b><span style="color: red">{{firedefense}}</span></b><br /><br />
Lightning Damage: <b><span style="color: blue">{{lightattack}}</span></b><br />
Lightning Defense: <b><span style="color: blue">{{lightdefense}}</span></b><br /><br />
</td>
</tr><tr>
<td colspan="2" style="border-top: solid 1px #cccccc"><center><a href="index.php">Return to the game.</a></center></td>
</tr></table></center>
END;
?>