View file techno/snyat.php

File size: 2.01Kb
<?
define('PROTECTOR', 1);

$textl='Инвентарь';
include('files/db.php');
include('files/auth.php');
include('files/func.php');
going();
include('files/core.php');
include('files/head.php');
include('files/zag.php');


if(empty($_GET[id])){
$req = mysql_query("SELECT * FROM `item` WHERE `usr` = '$log' and `tip`='$_GET[tip]' and `image`='yes'");
}else{
$req = mysql_query("SELECT * FROM `item` WHERE `usr` = '$log' and `tip`='$_GET[tip]' and `image`='yes' and `id`='$_GET[id]'");
}
$avto=mysql_num_rows($req);
if($avto==0){
echo'Ошибка, на вас ничего не одето!';
include('files/down.php');
exit;
}
$mag = mysql_fetch_array($req);

$numin=$udata[umin]-$mag[umin];
$numax=$udata[umax]-$mag[umax];

$npgolova=$udata[pgolova]-$mag[pgolova];
$npbody=$udata[pbody]-$mag[pbody];
$npnogi=$udata[pnogi]-$mag[pnogi];

$nhp=$udata[hpall]-$mag[hp];
$nmp=$udata[mpall]-$mag[mp];
$nkrit=$udata[krit]-$mag[krit];
$nukrit=$udata[ukrit]-$mag[ukrit];

$nsila=$udata[sila]-$mag[sila];
$nlovk=$udata[lovk]-$mag[lovk];
$nprot=$udata[prot]-$mag[prot];
$num=$udata[um]-$mag[um];
$nanti=$udata[antikrit]-$mag[antikrit];

mysql_query("UPDATE `users` SET
         `umin` = '$numin',
         `umax` = '$numax',
         `pgolova` = '$npgolova',
         `pbody` = '$npbody',
         `pnogi` = '$npnogi',
         `hpall` = '$nhp',
         `mpall` = '$nmp',
         `krit` = '$nkrit',
         `ukrit` = '$nukrit',
         `antikrit` = '$nanti',
         `sila` = '$nsila',
         `lovk` = '$nlovk',
         `um` = '$num',
         `prot` = '$nprot'
          WHERE usr = 'Hon'");
          
if(empty($_GET[id])){
mysql_query("UPDATE item SET image = 'not' WHERE `usr` = '$log' and `tip`='$_GET[tip]' and `image`='yes'");
}else{
mysql_query("UPDATE item SET image = 'not' WHERE `usr` = '$log' and `tip`='$_GET[tip]' and `image`='yes' and `id`='$_GET[id]'");
}
echo"Вы сняли $mag[name]!<br/>";
echo"<a href=\"pers.php?\">Назад</a>";

include('files/down.php');
?>