Файл: sumerki.mobi/sumerki.mobi/aura.php
Строк: 84
<?
define('PROTECTOR', 1);
$headmod = 'aura';//фикс. места
$textl='Инвентарь';
include('files/path.php');
include('files/gzips.php');
include($path.'files/db.php');
include($path.'files/auth.php');
include($path.'files/func.php');
going();
include($path.'files/core.php');
include($path.'files/head.php');
include($path.'files/zag.php');
$req = mysql_query("SELECT * FROM `item_aura` WHERE `usr` = '$log' and `id`='".mysql_real_escape_string($_GET['id'])."'");
$avto=mysql_num_rows($req);
if($avto==0){
echo'Ошибка, такого эффекта нет!';
include($path.'files/down.php');
include($path.'files/meny.php');
exit;
}
$mag = mysql_fetch_array($req);
$req1 = mysql_query("SELECT * FROM `item_aura` WHERE `usr` = '$log' and `status`='1'");
$avto1=mysql_num_rows($req1);
if($avto1>=1){
echo'Нельзя активировать больше одного эффекта!';
include($path.'files/down.php');
include($path.'files/meny.php');
exit;
}
if($mag[klas]!='not' and $mag[klas]!=$udata[klas]){
echo'Этот эффект не для вашего класса!';
include($path.'files/down.php');
include($path.'files/meny.php');
exit;
}
if($mag[nsila] > $udata[sila] or $mag[num] > $udata[um] or $mag[nlovk] > $udata[lovk] or $mag[nlvl] > $udata[lvl]){
echo'Эффект неподходит по вашим скилам!';
include($path.'files/down.php');
include($path.'files/meny.php');
exit;
}
$actime=time()+$mag[actime];
mysql_query("INSERT INTO
`aurs` SET
`usr` = '$log',
`actimer` = '$actime'");
$numin=$mag[umin]+$udata[umin];
$nprot=$mag[prot]+$udata[prot];
$nlovk=$mag[lovk]+$udata[lovk];
$num=$mag[um]+$udata[um];
$nsila=$mag[sila]+$udata[sila];
$numax=$mag[umax]+$udata[umax];
$nprotect=$mag[protect]+$udata[prot];
$nhp=$mag[hp]+$udata[hpall];
$nmp=$mag[mp]+$udata[mpall];
$nkrit=$mag[krit]+$udata[krit];
$nukrit=$mag[ukrit]+$udata[ukrit];
$nanti=$mag[antikrit]+$udata[antikrit];
mysql_query("UPDATE `users` SET
`umin` = '$numin',
`umax` = '$numax',
`prot` = '$nprotect',
`hpall` = '$nhp',
`mpall` = '$nmp',
`krit` = '$nkrit',
`ukrit` = '$nukrit',
`sila` = '$nsila',
`lovk` = '$nlovk',
`prot` = '$nprot',
`um` = '$num',
`antikrit` = '$nanti'
WHERE usr = '$log'");
mysql_query("UPDATE item_aura SET status = '1' WHERE `usr` = '$log' and `id`='".mysql_real_escape_string($_GET['id'])."'");
echo"Вы активировали эффект <b>$mag[name]</b> на $mag[actime] секунд!<br/>";
echo'<div class="bt"></div>';
echo "<img src='pic/main/city.png'/><a href="inventar.php?"> Вернуться</a><br>";
echo'<div class="bt"></div>';
include($path.'files/down.php');
include($path.'files/meny.php');
?>