Файл: chats/city1/public_house.php
Строк: 90
<?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 "<b>".$lang['game_city1']."</b><br/>";
print "<u>[".$lang['ph_enter']."]</u><br/>";
switch ($mode)
{
case "sale":
if(!empty($p) && $mafcredits>=$p && ($health+$p)<=150 && ($p==50 || $p==70 || $p==100))
{
$p=cyr(htmlspecialchars(stripslashes(trim($p))));
$mafcredits=$mafcredits-$p;
$health=$health+($p-30);
mysql_query("update users set health='$health',mafcredits='$mafcredits' where id='".$id."';");
print $lang['city1_health_corrected']." <b>$p %</b>!<br/>";
}
elseif($mafcredits<=$p)
{
print $lang['city1_dont_have_mafcredits']."<br/>";
}
elseif(($health+$p)>=150)
{
print $lang['city1_health_cannot_be_more']." 150 %.<br/>";
}
elseif(empty($p))
{
print "<img src="./../pics/1.jpg" alt="50 $$"/><br/>";
print "-<a href="public_house.php?id=$id&pass=$pass&mode=sale&p=50">".$lang['ph_kup']."</a><b>(50 $$)</b><br/>";
print "<img src="./../pics/2.jpg" alt="70 $$"/><br/>";
print "-<a href="public_house.php?id=$id&pass=$pass&mode=sale&p=70">".$lang['ph_kup']."</a><b>(70 $$)</b><br/>";
print "<img src="./../pics/3.jpg" alt="100 $$"/><br/>";
print "-<a href="public_house.php?id=$id&pass=$pass&mode=sale&p=100">".$lang['ph_kup']."</a><b>(100 $$)</b><br/>";
}
print "><a href="public_house.php?id=$id&pass=$pass">".$lang['ph_enter']."</a><br/>";
break;
default:
print $lang['ph_mes']."<br/>";
print "<a href="public_house.php?id=$id&pass=$pass&mode=sale">".$lang['ph_kup_sh']."</a><br/>";
break;
}
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/>---";
echo "<br/><a href="../enter.php?id={$id}&pass={$pass}&ref={$ref}">Прихожка</a><br/>";
mysql_close();
include "./../includes/footer.php";
?>