This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb5/scripts/site/main/output/kicked.en.inc

24 lines
449 B
PHP

<?
include("menu.en.inc");
$this->title = "Banned";
$this->addStylesheet('text');
$this->startContents();
?>
<h1>Banned!</h1>
<p>
You have been banned from the game.
</p>
<p>
Don't even think about coming back.
</p>
<?
$q = dbQuery("SELECT reason FROM account WHERE id=" . tracking::$data['uid'] . " AND status='KICKED'");
list($reason) = dbFetchArray($q);
if ($reason != "") {
echo "<p><b>Reason:</b> $reason</p>";
}
$this->endContents();
?>