View file gta/city1/police_house.php

File size: 2.6Kb
<?php
include "./../ini3.php";
include "./../includes/header$h.php";
include "./../includes/inc_online.php";


$id=cyr(htmlspecialchars(stripslashes(trim($id))));
$pass=cyr(htmlspecialchars(stripslashes(trim($pass))));

if(!empty($id))
{
$q = mysql_query("select * from users where id='".$id."';");
}
else
{
die ($lang['empty_login']."</body>
</html>");
}

$data = mysql_fetch_array($q);

$id=$data['id'];
$login=$data['login'];
$money=$data['money'];
$level=$data['level'];
$police=$data['police'];
$stage=$data['stage'];
$health=$data['health'];
$cars=$data['cars'];
$guns=$data['guns'];
$nums=$data['nums'];
$voo_por=$data['voodoo'];
$energy=$data['energy'];
$secur=$data['secur'];
$policeman=$data['policeman'];
$lvl=$data['lvl'];
$lox=$data['lox'];

if(md5($pass)!=$data['pass'])
{
die ($lang['empty_login']."</body>
</html>");
}

mysql_query("update users set last='".time()."',city='1' where id='".$id."';");

include "./../includes/inc_secur.php";
include "./../includes/inc_energy.php";
include "./../includes/inc_hospital.php";
include "./../includes/inc_police.php";
include "./../includes/inc_die.php";
include "./../includes/inc_voodoo.php";
include "./../includes/inc_attack.php";
include "./../includes/inc_mes.php";
print "<b>".$lang['game_city1']."</b><br/>";
print "<u>[".$lang['polh_house']."]</u><br/>";
$otkup=1500*$police;
switch($mode)
{
default:
print '<a href="sud.php?id='.$id.'&amp;pass='.$pass.'&amp;mode=bands">'.$lang['plc_sud'].'</a><br/>';
if($police<=8 && $police>0)
{print "За $otkup$$ ты можешь откупиться от копов<br/>";
print "<a href=\"police_house.php?id=$id&amp;pass=$pass&amp;mode=otkup\">Откупиться за $otkup$$</a><br/>";
}
if($policeman==1) print '<a href="policeman.php?id='.$id.'&amp;pass='.$pass.'">Кабинет начальника полиции</a><br/>';
break;
case "otkup":
if($police<=8 && $money>$otkup && $police>0)
{
$money=$money-$otkup;
mysql_query("update users set money='".$money."',police='0' where id='".$id."';");
print "Ты откупился от копов. Твой уровень преступности 0.<br/>";
}
elseif($police>8) print "Ты уже не можешь откупиться от копов<br/>";
elseif($money<=$otkup) print "У тебя недостаточно денег<br/>";
break;
}
print "---<br/>&gt;<a href=\"index.php?id=$id&amp;pass=$pass\">".$lang['in_city']."</a>";
print "<br/>&gt;&gt;<a href=\"./../game.php?id=$id&amp;pass=$pass\">".$lang['menu']."</a>";
print "<br/>---";

mysql_close();
include "./../includes/footer2.php";
?>