Файл: chats/city1/fastfood.php
Строк: 112
<?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'];
mysql_query("update users set last='".time()."',city='1' 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_city1']."</b></div>";
print "<u>[".$lang['sl_fastfood']."]</u><br/>";
if(!empty($p))
{
if(($mafcredits-$p)<=0) print $lang['voo_no_mafcredits'];
else
{
if($p==50)
{
$gol_rand=rand(30,50);
$golod=$golod+$gol_rand;
if($golod>150)print $lang['rest_golod_err'];
else
{
$mafcredits=$mafcredits-50;
mysql_query("update users set mafcredits='".$mafcredits."',golod='".$golod."' where id='".$id."';");
print $lang['rest_now_yr_golod']." ".$golod."% :-)<br/>";
}
}
elseif($p==20)
{
$gol_rand=rand(10,20);
$golod=$golod+$gol_rand;
if($golod>150)print $lang['rest_golod_err'];
else
{
$mafcredits=$mafcredits-20;
mysql_query("update users set mafcredits='".$mafcredits."',golod='".$golod."' where id='".$id."';");
print $lang['rest_now_yr_golod']." ".$golod."% :-)<br/>";
}
}
elseif($p==10)
{
$gol_rand=rand(5,10);
$golod=$golod+$gol_rand;
if($golod>150)print $lang['rest_golod_err'];
else
{
$mafcredits=$mafcredits-10;
mysql_query("update users set mafcredits='".$mafcredits."',golod='".$golod."' where id='".$id."';");
print $lang['rest_now_yr_golod']." ".$golod."% :-)<br/>";
}
}
elseif($p==5)
{
$gol_rand=rand(1,5);
$golod=$golod+$gol_rand;
if($golod>150)print $lang['rest_golod_err'];
else
{
$mafcredits=$mafcredits-5;
mysql_query("update users set mafcredits='".$mafcredits."',golod='".$golod."' where id='".$id."';");
print $lang['rest_now_yr_golod']." ".$golod."% :-)<br/>";
}
}
}
}
print $lang['city1_at_you']." <b>$mafcredits $$</b> ".$lang['city1_want_buy']."<br/>";
print "-<a href="fastfood.php?id=$id&pass=$pass&p=50">".$lang['ff-1']."</a>(50$$)<br/>";
print "-<a href="fastfood.php?id=$id&pass=$pass&p=20">".$lang['ff-2']."</a>(20$$)<br/>";
print "-<a href="fastfood.php?id=$id&pass=$pass&p=10">".$lang['ff-3']."</a>(10$$)<br/>";
print "-<a href="fastfood.php?id=$id&pass=$pass&p=5">".$lang['ff-4']."</a>(5$$)<br/>";
print "><a href="slums.php?id=$id&pass=$pass">".$lang['city1_slums']."</a><br/>";
print "---<br/>><a href="index.php?id=$id&pass=$pass">".$lang['in_city']."</a>";
print "<br/>>><a href="./../game.php?id=$id&pass=$pass">".$lang['menu']."</a>";
print "<br/>---";
mysql_close();
include "./../includes/footer.php";
?>