2018-01-28 16:40:49 +00:00
< ? php
// magic идентификацыя
if ( $user [ 'battle' ] > 0 ) {
2020-10-29 23:30:05 +00:00
echo " РќРµ Р І Р±РѕСЋ... " ;
2018-01-28 16:40:49 +00:00
} else
2020-10-29 23:30:05 +00:00
if ( $user [ 'intel' ] >= 1 ) {
$int = 91 + $user [ 'intel' ] - 1 ;
if ( $int > 100 ) {
$int = 100 ;
}
} else {
$int = 0 ;
}
if ( rand ( 1 , 100 ) < $int ) {
if ( empty ( $_SESSION [ 'uid' ])) {
header ( " Location: index.php " );
exit ;
}
2020-09-30 12:30:00 +00:00
2020-10-29 23:30:05 +00:00
$dress = mysql_fetch_array ( mysql_query ( " SELECT * FROM `inventory` WHERE (`name` LIKE '%Меч%' OR `name` LIKE '%Жало%') AND `owner` = ' { $user [ 'id' ] } ' AND `name` = ' { $_POST [ 'target' ] } ' AND `sharped` = 0 LIMIT 1; " ));
$svitok = mysql_fetch_array ( mysql_query ( " SELECT * FROM `inventory` WHERE `name` = 'Заточка на мечи +11' AND `owner` = ' { $user [ 'id' ] } ' LIMIT 1; " ));
2018-01-28 16:40:49 +00:00
2020-10-29 23:30:05 +00:00
if ( $dress && $svitok ) {
if ( mysql_query ( " UPDATE `inventory` SET `sharped` = 1, `name` = CONCAT(`name`,'+11'), `minu` = `minu`+11, `maxu`=`maxu`+11, `nmech` = `nmech`+11, `cost` = `cost`+72, `nvinos` = `nvinos`+5 WHERE `id` = { $dress [ 'id' ] } LIMIT 1; " )) {
echo " <font color=red><b>Предмет \" { $_POST [ 'target' ] } \" удачно заточен +11.<b></font> " ;
$bet = 1 ;
} else {
echo " <font color=red><b>Произошла ошибка!<b></font> " ;
}
} else {
echo " <font color=red><b>Неправильное имя предмета или неправильный свиток<b></font> " ;
}
} else {
echo " <font color=red><b>Неудачно...<b></font> " ;
$bet = 1 ;
}