lwb5-in-2025/game/scripts/site/main/output/kicked.en.inc

25 lines
455 B
PHP
Raw Normal View History

2024-12-31 10:20:23 +01:00
<?php
2016-01-10 11:01:49 +01:00
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>
2024-12-31 10:20:23 +01:00
<?php
2016-01-10 11:01:49 +01:00
$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();
?>