2018-01-28 16:40:49 +00:00
|
|
|
|
<?php
|
|
|
|
|
// magic идентификацыя
|
|
|
|
|
if ($user['battle'] > 0) {
|
|
|
|
|
echo "Не в бою...";
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
$magic = mysql_fetch_array(mysql_query("SELECT `chanse` FROM `magic` WHERE `id` = '3' ;"));
|
|
|
|
|
if ($user['intel'] >= 2) {
|
|
|
|
|
$int=$magic['chanse'] + ($user['intel'] - 2)*3;
|
|
|
|
|
if ($int>98){$int=99;}
|
|
|
|
|
}
|
|
|
|
|
else {$int=0;}
|
|
|
|
|
|
|
|
|
|
if (rand(1,100) < $int) {
|
|
|
|
|
|
2020-09-30 12:30:00 +00:00
|
|
|
|
if (empty($_SESSION['uid'])) {
|
2020-09-30 12:01:33 +00:00
|
|
|
|
header("Location: index.php");
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2020-09-30 12:30:00 +00:00
|
|
|
|
|
2018-01-28 16:40:49 +00:00
|
|
|
|
|
|
|
|
|
$dress = mysql_fetch_array(mysql_query("SELECT * FROM `inventory` WHERE `name` = '{$target}' AND `needident` = 1 LIMIT 1;"));
|
|
|
|
|
if (mysql_query("UPDATE `inventory` SET `needident` = 0 WHERE `id` = {$dress['id']} LIMIT 1;")) {
|
|
|
|
|
echo "<font color=red><b>Предмет \"{$target}\" удачно идентифицирован <b></font>";
|
|
|
|
|
$bet=1;
|
|
|
|
|
} else {
|
|
|
|
|
echo "<font color=red><b>Неправильное имя предмета<b></font>";
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
{
|
|
|
|
|
echo "<font color=red><b>Неудачно...<b></font>";
|
|
|
|
|
$bet=1;
|
|
|
|
|
}
|
|
|
|
|
}
|