initial commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
// magic идентификацыя
|
||||
if ($user['battle'] > 0) {
|
||||
echo "Не в бою...";
|
||||
} else {
|
||||
if ($user['intel'] >= 4) {
|
||||
$int=61 + $user['intel'] - 4;
|
||||
if ($int>100){$int=100;}
|
||||
}
|
||||
else {$int=0;}
|
||||
if (rand(1,100) < $int) {
|
||||
|
||||
if ($_SESSION['uid'] == null) header("Location: index.php");
|
||||
|
||||
$dress = mysql_fetch_array(mysql_query("SELECT * FROM `inventory` WHERE (`name` LIKE '%кастет%' OR `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` = 'Заточка на ножи +2' AND `owner` = '{$user['id']}' LIMIT 1;"));
|
||||
|
||||
|
||||
if ($dress && $svitok) {
|
||||
if (mysql_query("UPDATE `inventory` SET `sharped` = 1, `name` = CONCAT(`name`,'+2'), `cost` = `cost`+12, `minu` = `minu`+2, `maxu`=`maxu`+2, `nnoj` = `nnoj`+2, `ninta` = `ninta`+2 WHERE `id` = {$dress['id']} LIMIT 1;")) {
|
||||
echo "<font color=red><b>Предмет \"{$_POST['target']}\" удачно заточен +2.<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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user