Dragon-Scourge/templates/panels_bottom.php
Jamin Blount 50516c3280 Beta 5 Build 19
07.28.2007 - Build 19 (Consolation Prize):
- Added "moddedby" column to controlrow. Will display next to normal
Scourge copyright.
- Added SigBot, which lets players display their character stats in
forum signature images.
- PVP fights now properly escape the opposing player's $userrow before
updating.
- Fixed misspellings of 'bonusdefense' in spells.php.
- Fixed error that occurred when you failed to select a spell slot when
adding new spells.
- Minor changes to err() output.
2017-02-05 12:01:47 -06:00

54 lines
1.6 KiB
PHP

<?php
// Dragon Scourge
//
// Program authors: Jamin Blount
// Copyright (C) 2007 by renderse7en
// Script Version 1.0 Beta 5 Build 19
// You may not distribute this program in any manner, modified or
// otherwise, without the express, written consent from
// renderse7en.
//
// You may make modifications, but only for your own use and
// within the confines of the Dragon Scourge License Agreement
// (see our website for that).
$template = <<<END
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="175" style="vertical-align: middle;">
<table width="100%" cellspacing="2" cellpadding="0">
<tr>
<td><img src="{{charpicture}}" alt="" /></td>
<td width="100%">Level: <b>{{level}}</b> <br />
Exp: <b>{{experience}}</b><br />
Gold: <b>{{gold}}</b><br />
<a href="users.php?do=profile">Extended Profile</a>
</td>
</tr>
</table>
</td><td style="vertical-align: middle;">
{{levelup}}<br />
{{levelspell}}<br />
{{quickheal}}
</td>
</td><td style="vertical-align: middle;">
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="33%" style="text-align: right; padding-right: 3px;">Weapon:<br />Armor:<br />Helmet:<br />Shield:</td>
<td align="left"><b>{{weapon}}</b><br /><b>{{armor}}</b><br /><b>{{helmet}}</b><br /><b>{{shield}}</b></td>
</tr>
</table>
</td><td width="200" style="vertical-align: middle;">
<table width="100%" cellspacing="0" cellpadding="0">
<tr><td align="right">{{hpbar}}</td></tr>
<tr><td align="right">{{mpbar}}</td></tr>
<tr><td align="right">{{tpbar}}</td></tr>
</table>
</td>
</tr>
</table>
END;
?>