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

Размер файла: 6.68Kb
  1. <?php
  2. #####################################################
  3. # mod by -=LesNIK=- #
  4. # icq 366244181 #
  5. # Официальный сайт мода http://wenz.net.ru #
  6. # все ответы на вопросы и помощь по скрипту #
  7. # вы можете получить только там! #
  8. # #
  9. # Вы не имеете право вносить #
  10. # свои изменения в данный мод!#
  11. # #
  12. # Уважайте труд автора! #
  13. #####################################################
  14.  
  15.  
  16. include "ini3.php";
  17. include "includes/header2.php";
  18. include "includes/inc_online.php";
  19. print "<p><small>";
  20.  
  21. $id=cyr(htmlspecialchars(stripslashes(trim($id))));
  22. $login=cyr(htmlspecialchars(stripslashes(trim($login))));
  23. $pass=cyr(htmlspecialchars(stripslashes(trim($pass))));
  24. if(!empty($login))
  25. {
  26. $q = mysql_query("select band,guns,cars,id,login,pass,status,reg_data,money,level,police,health from users where login='".cyr($login)."';");
  27. }
  28. elseif(!empty($id))
  29. {
  30. $q = mysql_query("select band,guns,cars,id,login,pass,status,reg_data,money,level,police,health from users where id='".$id."';");
  31. }
  32. else
  33. {
  34. die ($lang['empty_login']."</small></p></card></wml>");
  35. }
  36.  
  37. $data = mysql_fetch_array($q);
  38.  
  39. $id=$data['id'];
  40. $login=$data['login'];
  41. $status=$data['status'];
  42. $reg_data=$data['reg_data'];
  43. $money=$data['money'];
  44. $level=$data['level'];
  45. $police=$data['police'];
  46. $health=$data['health'];
  47. $cars=$data['cars'];
  48. $guns=$data['guns'];
  49. $band=$data['band'];
  50.  
  51. if($pass!=$data['pass'])
  52. {
  53. die ($lang['empty_login']."</small></p></card></wml>");
  54. }
  55.  
  56. mysql_query("update users set last='".time()."',city='0' where id='".$id."';");
  57.  
  58. print "<u>[".$lang['cop_title']."]</u><br/>";
  59.  
  60. switch ($mode)
  61. {
  62. case "arest":
  63. mysql_query("update users set cars='',guns='',money='$money',police='0' where id='".$id."';");
  64. print $lang['arrested']."<br/>";
  65. break;
  66. case "vzyatka":
  67. if(empty($a) && $money>400)
  68. {
  69. print 'Давай 400 баксов и ты свободен!<br/>';
  70. print "<a href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=vzyatka&amp;a=b\">Дать<br/></a><br/>";
  71. print "<a href=\"cops.php?id=$id&amp;pass=$pass\">".$lang['cop_no']."</a><br/>";
  72. }
  73. else
  74. {
  75. if($money<400) die($lang['voo_no_money']."<br/><anchor>".$lang['back']."<prev/></anchor></small></p></card></wml>");
  76. $money=$money-400;
  77. mysql_query("update users set money='".$money."',police='0' where id='".$id."';");
  78. print $lang['cops_free']."<br/>";
  79. }
  80. break;
  81. case "kill":
  82. if(empty($guns))
  83. {
  84. mysql_query("update users set cars='',guns='',money='$money',police='0' where id='".$id."';");
  85. print $lang['uv_without_guns']."<br/> ".$lang['arrested']."<br/>";
  86. }
  87. else
  88. {
  89. if(empty($a))
  90. {
  91. $guns_array = explode(".", $guns);
  92. $count_guns=count($guns_array);
  93. echo $lang['cops_select_gun']."";
  94. //for($i=0;$i<$count_guns;$i++)
  95. //{
  96. //print "<option value=\"".$guns_array[$i]."\">".$guns_array[$i]."</option>";
  97. //}
  98. //print "</select><br/><small>";
  99. //print "<anchor>".$lang['ok']."
  100. //<go href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=kill\" method=\"post\">
  101. //<postfield name=\"a\" value=\"b\"/>
  102. //<postfield name=\"at_gun\" value=\"$(at_gun)\"/>
  103. //</go></anchor><br/>";
  104.  
  105. //print $lang['uv_guns']." <b>($count_guns)</b>:</small>
  106. echo "<form action=\"cops.php?id=$id&amp;pass=$pass&amp;mode=kill\" method=\"post\">
  107. <br/>";
  108. echo "<select name=\"at_gun\">";
  109. for($i=0;$i<$count_guns;$i++)
  110. {
  111. echo "<option value=\"".$guns_array[$i]."\">".$guns_array[$i]."</option>";
  112. }
  113. echo "</select><br/>
  114. <input type=\"hidden\" name=\"a\" value=\"b\"/>
  115. <postfield name=\"at_gun\" value=\"$(at_gun)\"/>
  116. <input class=\"ibutton\" type=\"submit\" value=\"".$lang['ok']."\"/>
  117. </form>";
  118. /////////////////////////////////////////////////////////////
  119.  
  120. }
  121. else
  122. {
  123. if($at_gun=="Кастет")$at_gun=1;
  124. elseif($at_gun=="Нож")$at_gun=2;
  125. elseif($at_gun=="Дубинка")$at_gun=3;
  126. elseif($at_gun=="ПМ")$at_gun=4;
  127. elseif($at_gun=="Мачете")$at_gun=5;
  128. elseif($at_gun=="Беретта")$at_gun=6;
  129. elseif($at_gun=="Меч")$at_gun=7;
  130. elseif($at_gun=="Калашников")$at_gun=8;
  131. elseif($at_gun=="Взрывчатка")$at_gun=9;
  132. elseif($at_gun=="Электрошокер")$at_gun=10;
  133. elseif($at_gun=="Напалм")$at_gun=11;
  134. elseif($at_gun=="Базука")$at_gun=12;
  135. elseif($at_gun=="Гранатомет")$at_gun=13;
  136. elseif($at_gun=="ПЗРК")$at_gun=14;
  137. elseif($at_gun=="Слонобой")$at_gun=15;
  138. elseif($at_gun=="Ракетная установка")$at_gun=16;
  139. elseif($at_gun=="МЕ 85 Combat")$at_gun=17;
  140. elseif($at_gun=="Rohm 735")$at_gun=18;
  141. elseif($at_gun=="Brunner CZ 75")$at_gun=19;
  142. elseif($at_gun=="Лазерное оружие")$at_gun=20;
  143.  
  144. $gun_cop=rand(5,19);
  145.  
  146. if($gun_cop==5)$cop_gun="Мачете";
  147. elseif($gun_cop==6)$cop_gun="Беретта";
  148. elseif($gun_cop==7)$cop_gun="Меч";
  149. elseif($gun_cop==8)$cop_gun="Калашников";
  150. elseif($gun_cop==9)$cop_gun="Взрывчатка";
  151. elseif($gun_cop==10)$cop_gun="Электрошокер";
  152. elseif($gun_cop==11)$cop_gun="Напалм";
  153. elseif($gun_cop==12)$cop_gun="Базука";
  154. elseif($gun_cop==13)$cop_gun="Гранатомет";
  155. elseif($gun_cop==14)$cop_gun="ПЗРК";
  156. elseif($gun_cop==15)$cop_gun="Слонобой";
  157. elseif($gun_cop==16)$cop_gun="Ракетная установка";
  158. elseif($gun_cop==17)$cop_gun="МЕ 85 Combat";
  159. elseif($gun_cop==18)$cop_gun="Rohm 735";
  160. elseif($gun_cop==19)$cop_gun="Brunner CZ 75";
  161.  
  162.  
  163. if($gun_cop>$at_gun)
  164. {
  165. mysql_query("update users set cars='',guns='',police='0' where id='".$id."';");
  166. print $lang['cop_power']." ".$cop_gun."!<br/> ".$lang['arrested']."<br/>";
  167. }
  168. else
  169. {
  170. $money=$money+300;
  171. $level=$level+1;
  172. mysql_query("update users set police='0',money='".$money."',level='".$level."' where id='".$id."';");
  173. print $lang['cop_died']."<br/>";
  174. }
  175.  
  176. }
  177.  
  178. }
  179. break;
  180. default:
  181. print $lang['cops_enter'];
  182. print "<a href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=arest\">".$lang['cops_arrest']."</a><br/>";
  183. print "<a href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=vzyatka\">".$lang['cops_put_money']."</a><br/>";
  184. print "<a href=\"cops.php?id=$id&amp;pass=$pass&amp;mode=kill\">".$lang['cops_attack']."</a><br/>";
  185. break;
  186. }
  187.  
  188.  
  189. print "---<br/>&gt;<anchor>".$lang['back']."<prev/></anchor>";
  190. print "<br/>&gt;&gt;<a href=\"game.php?id=$id&amp;pass=$pass\">".$lang['menu']."</a>";
  191. print "<br/>---";
  192.  
  193. mysql_close();
  194. print "</small></p></card></wml>";
  195. ?>