Файл: chats/city2/index.php
Строк: 71
<?php
require( "../inc/conf.inc.php" );
require( "../inc/check.php" );
include "./../includes/header.php";
include "../includes/inc_online.php";
include "../russian/lang_main.php"; //языковой файл
if(!empty($id))
{
$q = mysql_query("select secur,golod,voodoo,nums,guns,cars,id,login,pass,mafcredits,level,police,health from users where id='".$id."';");
}
$data = mysql_fetch_array($q);
$id=$data['id'];
$login=$data['login'];
$mafcredits=$data['mafcredits'];
$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'];
$golod=$data['golod'];
$secur=$data['secur'];
if($level<2)
{
die ($lang['error']."");
}
mysql_query("update users set last='".time()."',city='2' where id='".$id."';");
include "../includes/inc_secur.php";
include "../includes/inc_golod.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 "<div><b>".$lang['game_city2']."</b></div>";
print "<u>[".$lang['city']."]</u><br/>";
print $lang['city2_text1']."<br/>";
print "<a href="gunman.php?id=$id&pass=$pass">".$lang['city2_gunman']."</a><br/>";
print "Авш авторитет непозволяет вам тусить в <b>".$lang['game_city2']."</b><br/>";
include("../includes/inc_in_city2.php");
echo "<br/><a href="../enter.php?id={$id}&pass={$pass}&ref={$ref}">Прихожка</a><br/>";
mysql_close();
include "../includes/footer.php";
?>