Просмотр файла cops.php

Размер файла: 4.58Kb
<?php
include "ini3.php";
include "includes/header2.php";


$id=cyr(htmlspecialchars(stripslashes(trim($id))));
$login=cyr(htmlspecialchars(stripslashes(trim($login))));
$pass=cyr(htmlspecialchars(stripslashes(trim($pass))));
if(!empty($login)) 
{  
$q = mysql_query("select band,guns,cars,id,login,pass,status,reg_data,money,level,police,health from users where login='".cyr($login)."';"); 
}
elseif(!empty($id)) 
{
$q = mysql_query("select band,guns,cars,id,login,pass,status,reg_data,money,level,police,health from users where id='".$id."';"); 
}
else
{
die ($lang['empty_login']."</small></p></card></wml>");
}

$data = mysql_fetch_array($q);

$id=$data['id'];
$login=$data['login'];
$status=$data['status'];
$reg_data=$data['reg_data'];
$money=$data['money'];
$level=$data['level'];
$police=$data['police'];
$health=$data['health'];
$cars=$data['cars'];
$guns=$data['guns'];
$band=$data['band'];

if(md5($pass)!=$data['pass'])
{
die ($lang['empty_login']."</small></p></card></wml>");
}

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

print "<u>[".$lang['cop_title']."]</u><br/>";

switch ($mode) 
{  
  case "arest":
        mysql_query("update users set cars='',guns='',money='$money',police='0' where id='".$id."';");
print $lang['arrested']."<br/>";
    break;
  case "kill":
if(empty($guns))
{
       mysql_query("update users set cars='',guns='',money='$money',police='0' where id='".$id."';");
print $lang['uv_without_guns']."<br/> ".$lang['arrested']."<br/>";
}
else
{
if(empty($a))
{
$guns_array = explode(".", $guns);
$count_guns=count($guns_array);
print $lang['cops_select_gun'].'';
echo "<form action=\"cops.php?id=$id&amp;pass=$pass&amp;mode=kill\" method=\"post\">
<br/>";
echo "<select name=\"at_gun\">";
for($i=0;$i<$count_guns;$i++)
{
echo "<option value=\"".$guns_array[$i]."\">".$guns_array[$i]."</option>";
}
echo "</select><br/>
<input type=\"hidden\" name=\"a\" value=\"b\"/>
<postfield name=\"at_gun\" value=\"$(at_gun)\"/>
<input class=\"ibutton\" type=\"submit\" value=\"".$lang['ok']."\"/>
   </form>";
}
else
{
if($at_gun=="Кастет")$at_gun=1;
elseif($at_gun=="Нож")$at_gun=2;
elseif($at_gun=="Дубинка")$at_gun=3;
elseif($at_gun=="ПМ")$at_gun=4;
elseif($at_gun=="Мачете")$at_gun=5;
elseif($at_gun=="Беретта")$at_gun=6;
elseif($at_gun=="Меч")$at_gun=7;
elseif($at_gun=="Калашников")$at_gun=8;
elseif($at_gun=="Взрывчатка")$at_gun=9;
elseif($at_gun=="Электрошокер")$at_gun=10;
elseif($at_gun=="Напалм")$at_gun=11;
elseif($at_gun=="Базука")$at_gun=12;
elseif($at_gun=="Гранатомет")$at_gun=13;
elseif($at_gun=="ПЗРК")$at_gun=14;
elseif($at_gun=="Слонобой")$at_gun=15;
elseif($at_gun=="Ракетная установка")$at_gun=16;
elseif($at_gun=="МЕ 85 Combat")$at_gun=17;
elseif($at_gun=="Rohm 735")$at_gun=18;
elseif($at_gun=="Brunner CZ 75")$at_gun=19;
elseif($at_gun=="Лазерное оружие")$at_gun=20;

$gun_cop=rand(5,18);

if($gun_cop==5)$cop_gun="Мачете";
elseif($gun_cop==6)$cop_gun="Беретта";
elseif($gun_cop==7)$cop_gun="Меч";
elseif($gun_cop==8)$cop_gun="Калашников";
elseif($gun_cop==9)$cop_gun="Взрывчатка";
elseif($gun_cop==10)$cop_gun="Электрошокер";
elseif($gun_cop==11)$cop_gun="Напалм";
elseif($gun_cop==12)$cop_gun="Базука";
elseif($gun_cop==13)$cop_gun="Гранатомет";
elseif($gun_cop==14)$cop_gun="ПЗРК";
elseif($gun_cop==15)$cop_gun="Слонобой";
elseif($gun_cop==16)$cop_gun="Ракетная установка";
elseif($gun_cop==17)$cop_gun="МЕ 85 Combat";
elseif($gun_cop==18)$cop_gun="Rohm 735";


if($gun_cop>$at_gun)
{
mysql_query("update users set cars='',guns='',money='money',police='0' where id='".$id."';");
print $lang['cop_power']." ".$cop_gun."!<br/> ".$lang['arrested']."<br/>";
}
else
{
$money=$money+300;
$level=$level+1;
mysql_query("update users set police='0',money='".$money."',level='".$level."' where id='".$id."';");
print $lang['cop_died']."<br/>";
}

}

}
    break;
  default:
    print $lang['cops_enter'];
    print "<a href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=arest\">".$lang['cops_arrest']."</a><br/>";
    print "<a href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=kill\">".$lang['cops_attack']."</a><br/>";
  break;
}


print "---<br/>&gt;<anchor>".$lang['back']."<prev/></anchor>";
print "<br/>&gt;&gt;<a href=\"game.php?id=$id&amp;pass=$pass\">".$lang['menu']."</a>";
print "<br/>---</body></html>";

mysql_close();
?>