forked from Madmunus/AntiCombats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prison.php
37 lines (36 loc) · 1.21 KB
/
prison.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?
defined('AntiBK') or die("Доступ запрещен!");
$prisoners = $adb->selectCell("SELECT COUNT(*) FROM `characters` WHERE `prison` != '0';");
?>
<table>
<tr>
<td><img src="img/prison.jpg"><br>Всего в тюрьме: <b><?echo $prisoners;?></b></td>
<td width="100%" valign="top">
<center>Тюрьма - место покоя тех, кто был глуп и наивен.</center>
<?
if (!$char_db['prison'])
{
?>
<table width="148" align="right" border="0" cellpadding="0" cellspacing="1" bgcolor="#DEDEDE">
<tr>
<td bgcolor="#D3D3D3"><img src="img/links.gif" width="9" height="7"/></td>
<td bgcolor="#D3D3D3" nowrap><a href="main.php?action=go&room_go=centsquare" class="passage" alt="<?echo $char->city->getRoomOnline('centsquare', 'mini');?>">Центральная Площадь</a></td>
</tr>
</table>
<?
}
else
{
$time = getFormatedTime($char_db['prison']);
echo "<span class='small'><center><font color='#FF0000'><b>Вам осталось сидеть $time</b><br>";
if ($char_db['prison_reason'])
{
echo "Причина тюремного заключения:<br>";
echo $char_db['prison_reason'];
}
echo "</font></center></span>";
}
?>
</td>
</tr>
</table>