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

Размер файла: 5.85Kb
  1. <?php
  2. include "./../ini.php";
  3. include "./../includes/header.php";
  4. include "./../includes/inc_online.php";
  5. print "<p><small>";
  6.  
  7. $id=cyr(htmlspecialchars(stripslashes(trim($id))));
  8. $pass=cyr(htmlspecialchars(stripslashes(trim($pass))));
  9.  
  10.  
  11. if(!empty($id))
  12. {
  13. $q = mysql_query("select secur,golod,voodoo,nums,guns,cars,id,login,pass,money,level,police,health from users where id='".$id."';");
  14. }
  15. else
  16. {
  17. die ($lang['empty_login']."</small></p></card></wml>");
  18. }
  19.  
  20. $data = mysql_fetch_array($q);
  21.  
  22. $id=$data['id'];
  23. $login=$data['login'];
  24. $money=$data['money'];
  25. $level=$data['level'];
  26. $police=$data['police'];
  27. $stage=$data['stage'];
  28. $health=$data['health'];
  29. $cars=$data['cars'];
  30. $guns=$data['guns'];
  31. $nums=$data['nums'];
  32. $voo_por=$data['voodoo'];
  33. $golod=$data['golod'];
  34. $secur=$data['secur'];
  35.  
  36. if($pass!=$data['pass'])
  37. {
  38. die ($lang['empty_login']."</small></p></card></wml>");
  39. }
  40.  
  41. mysql_query("update users set last='".time()."',city='1' where id='".$id."';");
  42.  
  43. include "./../includes/inc_secur.php";
  44. include "./../includes/inc_golod.php";
  45. include "./../includes/inc_hospital.php";
  46. include "./../includes/inc_police.php";
  47. include "./../includes/inc_die.php";
  48. include "./../includes/inc_voodoo.php";
  49. include "./../includes/inc_attack.php";
  50. include "./../includes/inc_mes.php";
  51. print "<b>".$lang['game_city1']."</b><br/>";
  52. print "<u>[".$lang['sl_kol_voodoo']."]</u><br/>";
  53.  
  54. switch ($mode)
  55. {
  56. case "kill":
  57. if(empty($who))
  58. {
  59. print $lang['voo_mes'];
  60. print "</small>";
  61. print "<input name=\"who\"/><br/><small>";
  62. print "<anchor>".$lang['ok']."<go href=\"voodoo.php?id=$id&amp;pass=$pass&amp;mode=kill\" method=\"post\">
  63. <postfield name=\"who\" value=\"$(who)\"/>
  64. </go></anchor><br/>";
  65. }
  66. else
  67. {
  68. if($money>50000)
  69. {
  70. $db=mysql_fetch_array(mysql_query("select id,pass,money from users where login='".$who."';"));
  71. $dbid=$db['id'];
  72. $dbpass=$db['pass'];
  73. $dbmoney=$db['money'];
  74. if(empty($dbid))
  75. {
  76. print $lang['voo_sel_us_err']."<br/>";
  77. }
  78. else
  79. {
  80. /*
  81. if($money<=$dbmoney)
  82. {
  83. $messaga="<b>".$lang['sl_kol_voodoo']."</b><br/>".$login." ".$lang['voo_from_kill']."<br/>[<a href=\"./../mes.php?pass=$dbpass&amp;id=$dbid&amp;dbid=$id&amp;mode=del\">".$lang['ok']."</a>]";
  84. mysql_query("insert into messagi values(0,'$id','$dbid','$messaga');");
  85. $dbmoney=$dbmoney-50000;
  86. mysql_query("update users set money='".$money."' where id='".$id."';");
  87. mysql_query("update users set money='".$dbmoney."' where id='".$dbid."';");
  88. print $lang['voo_kill_error'];
  89. }
  90. else
  91. {
  92. */
  93. $messaga="<b>".$lang['sl_kol_voodoo']."</b><br/>".$login." ".$lang['voo_mes_porcha']."<br/>[<a href=\"./../mes.php?pass=$dbpass&amp;id=$dbid&amp;dbid=$id&amp;mode=del\">".$lang['ok']."</a>]";
  94. mysql_query("insert into messagi values(0,'$id','$dbid','$messaga');");
  95. mysql_query("update users set voodoo='1' where id='".$dbid."';");
  96. $money=$money-50000;
  97. mysql_query("update users set money='".$money."' where id='".$id."';");
  98. print $who." ".$lang['voo_died']."<br/>";
  99. /*}*/
  100. }
  101. }
  102. else
  103. {
  104. print $lang['voo_no_money'];
  105. }
  106. }
  107.  
  108. print "&gt;<a href=\"voodoo.php?pass=$pass&amp;id=$id\">".$lang['sl_kol_voodoo']."</a><br/>";
  109. break;
  110. case "health":
  111. if(empty($who) || empty($which))
  112. {
  113. print $lang['voo_mes2'];
  114. print "</small>";
  115. print "<input name=\"who\"/><br/><small>";
  116. print $lang['voo_and_wh_heal']."<br/></small>";
  117. print "<input name=\"which\" format=\"*N\"/><br/><small>";
  118. print "<anchor>".$lang['ok']."<go href=\"voodoo.php?id=$id&amp;pass=$pass&amp;mode=health\" method=\"post\">
  119. <postfield name=\"who\" value=\"$(who)\"/>
  120. <postfield name=\"which\" value=\"$(which)\"/>
  121. </go></anchor><br/>";
  122. }
  123. else
  124. {
  125. $who=cyr(htmlspecialchars(stripslashes(trim($who))));
  126. $which=cyr(htmlspecialchars(stripslashes(trim($which))));
  127. if($which<150 && $money>($which*20))
  128. {
  129. $db=mysql_fetch_array(mysql_query("select id,pass,health from users where login='".$who."';"));
  130. $dbid=$db['id'];
  131. $dbpass=$db['pass'];
  132. $dbhealth=$db['health'];
  133. if(empty($dbid))
  134. {
  135. print $lang['voo_sel_us_err']."<br/>";
  136. }
  137. else
  138. {
  139. $dbhealth=$dbhealth-$which;
  140. $money=$money-($which*20);
  141. if($dbhealth<=10) die($lang['voo_health_err']."<br/><anchor>".$lang['back']."<prev/></anchor></small></p></card></wml>");
  142. $messaga="<b>".$lang['sl_kol_voodoo']."</b><br/>".$login." ".$lang['voo_heal_mes1']." ".$which." ".$lang['voo_heal_mes2']."<br/>[<a href=\"./../mes.php?pass=$dbpass&amp;id=$dbid&amp;dbid=$id&amp;mode=del\">".$lang['ok']."</a>]";
  143. mysql_query("insert into messagi values(0,'$id','$dbid','$messaga');");
  144. mysql_query("update users set money='".$money."' where id='".$id."';");
  145. mysql_query("update users set health='".$dbhealth."' where id='".$dbid."';");
  146. print $lang['voo_succes']."<br/>";
  147.  
  148. }
  149. }
  150. else
  151. {
  152. print $lang['voo_no_money'];
  153. }
  154. }
  155. print "&gt;<a href=\"voodoo.php?pass=$pass&amp;id=$id\">".$lang['sl_kol_voodoo']."</a><br/>";
  156. break;
  157.  
  158. case "porcha":
  159.  
  160. if($money<1000)
  161. {
  162. /*
  163. mysql_query("delete from messagi where kto='".$dbid."' and komu='".$id."' limit 1;");
  164. */
  165. die($lang['voo_no_money']."<br/><anchor>".$lang['back']."<prev/></anchor></small></p></card></wml>");
  166. }
  167. else
  168. {
  169. $money=$money-1000;
  170. mysql_query("update users set voodoo='',money='".$money."' where id='".$id."'");
  171. print $lang['voo_pr_sn']."<br/>";
  172. }
  173.  
  174. break;
  175. default:
  176. print $lang['voo_mes3'];
  177. print "<a href=\"voodoo.php?id=$id&amp;pass=$pass&amp;mode=kill\">".$lang['voo_kill']."</a><br/>";
  178. print "<a href=\"voodoo.php?id=$id&amp;pass=$pass&amp;mode=health\">".$lang['voo_minus_he']."</a><br/>";
  179. if(!empty($voo_por)) print "<a href=\"voodoo.php?pass=$pass&amp;id=$id&amp;mode=porcha\">".$lang['voo_otk_por']."</a><br/>";
  180. break;
  181. }
  182.  
  183.  
  184.  
  185.  
  186. print "---<br/>&gt;<a href=\"index.php?id=$id&amp;pass=$pass\">".$lang['in_city']."</a>";
  187. print "<br/>&gt;&gt;<a href=\"./../game.php?id=$id&amp;pass=$pass\">".$lang['menu']."</a>";
  188. print "<br/>---";
  189.  
  190. mysql_close();
  191. include "./../includes/footer.php";
  192. ?>