battles/magic/ident.php

35 lines
1.1 KiB
PHP
Raw Normal View History

2018-01-28 16:40:49 +00:00
<?php
if ($user['battle'] > 0) {
echo "Не в бою...";
2018-01-28 16:40:49 +00:00
} 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) {
if (empty($_SESSION['uid'])) {
header("Location: index.php");
exit;
}
$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;
}
2018-01-28 16:40:49 +00:00
}