View file gta/city1/set.php

File size: 2.93Kb
<?php
include "./../ini3.php";
include "./../includes/header2.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'];
$golod=$data['golod'];
$secur=$data['secur'];
$zav=$data['zav'];
$lsd=$data['lsd'];
$ban=$data['ban'];
$lox=$data['lox'];

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

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

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 "<b>[Зд: $health %][Сыт: $golod %][Зщ: $secur %]</b><br/>";
print "<b>".$lang['game_city1']."</b><br/>";
print "<u>[SeT]</u><br/>";
switch($mode)
{
default:
if($level<1000)$cena=1000;
if($level>=1000 && $level<3000)$cena=10000;
if($level<3000)
{
print "Хай,чувак! Ты можешь купить 5 единиц авторитета за $cena$$<br/>";
print "<a href=\"set.php?id=$id&amp;pass=$pass&amp;mode=yes\">Давай</a><br/>";
print "<a href=\"slums.php?id=$id&amp;pass=$pass\">Не, доpого!</a><br/>";
}else
{
print "Я ничем не могу тебе помочь.Обращайся в особняк банды или в Элитный магазин<br/>";
print "<a href=\"slums.php?id=$id&amp;pass=$pass\">Трущобы</a><br/>";
}
break;
case "yes":
if($level<1000)$cena=1000;
if($level>=1000 && $level<3000)$cena=10000;

if($money<$cena) print $lang['voo_no_money'];
elseif($level>=3000) print "Это сделать нельзя!<br/>";

elseif($level<3000 && $money>=$cena)
{

$money=$money-$cena;
mysql_query("update users set money='".$money."' where id='".$id."';");
$level=$level+5;
mysql_query("update users set level='".$level."' where id='".$id."';");
print "Вce!Доволен?Tвой автоpитет yвеличен на 5!<br/>";
}
break;
include("./../includes/inc_in_city.php");
}
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>";
mysql_close();
include "./../includes/footer2.php";
}

elseif($ban==1)
{
die ($lang['empty_login']."</body></html>");

}
?>