battles/magic/elikbroni.php

32 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$us = mysql_fetch_array(mysql_query("SELECT *,(select `id` from `online` WHERE `date` >= ".(time()-60)." AND `id` = users.`id`) as `online` FROM `users` WHERE `login` = '".mysql_escape_string($_POST['target'])."' LIMIT 1;"));
$magic = mysql_fetch_array(mysql_query("SELECT `chanse` FROM `magic` WHERE `id` = '76' ;"));
$effect = mysql_fetch_array(mysql_query("SELECT `time` FROM `effects` WHERE `owner` = '{$us['id']}' and `type` = '205' LIMIT 1;"));
if ($user['intel'] >= 0) {
$int=$magic['chanse'] + ($user['intel'] - 0)*3;
if ($int>98){$int=99;}
}
else {$int=0;}
if ($user['battle'] > 0) {echo "РќРµ РІ Р±РѕСЋ...";}
elseif ($user['level'] < 0) { echo "Вашего уровня не достаточно для использования этого заклинания!"; }
elseif ($effect['time']) {echo "На персонаже уже есть заклятие Эликсир брони +5"; }
elseif ($user->room != $us['room']) { echo "Персонаж в другой комнате!"; }
elseif (!$us['online']) {echo "Персонаж не в игре!";}
elseif (rand(0,100) < $int) {
addch("<img src=i/magic/elikbroni.gif>Персонаж &quot;<b>{$user['login']}</b>&quot; наложил заклятие \"<b>Эликсир брони +5</b>\" на &quot;<b>{$_POST['target']}</b>&quot;, сроком 6 часов.");
$user = mysql_fetch_array(mysql_query("SELECT `id` FROM `users` WHERE `login` = '{$_POST['target']}' LIMIT 1;"));
mysql_query("INSERT INTO `effects` (`owner`,`name`,`time`,`type`) values ('".(int)$user['id']."','Эликсир брони +5',".(time()+21600).",205);");
echo "<font color=red>На персонажа \"<b>{$_POST['target']}</b>\" наложено заклятие \"<b>Эликсир брони +5</b>\"</font>";
$bet=1;
} else {
echo "Свиток рассыпался в ваших руках...";
$bet=1;
}