battles/magic/8cure30.php

57 lines
2.9 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
// magic идентификацыя
if ($_SESSION['uid'] == null) header("Location: index.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` = '{$_POST['target']}' LIMIT 1;"));
$magic = mysql_fetch_array(mysql_query("SELECT `chanse` FROM `magic` WHERE `id` = '10' ;"));
if ($user['intel'] >= 3) {
$int=$magic['chanse'] + ($user['intel'] - 3)*3;
if ($int>98){$int=99;}
}
else {$int=0;}
if(!$us) {
$bots = mysql_fetch_array(mysql_query ('SELECT * FROM `bots` WHERE `name` = \''.$_POST['target'].'\' LIMIT 1;'));
/*if($bots) {
$id=$bots['prototype'];
$us = mysql_fetch_array(mysql_query("SELECT *, (select `id` from `online` WHERE `date` >= ".(time()-60)." AND `id` = users.`id`) as `online` FROM `users` WHERE `id` = '{$id}' LIMIT 1;"));
$us['login'] = $bots['name'];
$us['hp'] = $bots['hp'];
$us['id'] = $bots['id'];
$us['battle'] = $bots['battle'];
}*/
}
//echo
echo "<font color=red><B>";
if ($bots) { echo "Нельзя лечить клонов!"; }
elseif ($us['battle'] != $user['battle']) { echo "Персонаж находится в поединке!"; }
elseif ($user['room'] != $us['room'] && !$us['battle']) { echo "Персонаж в другой комнате!"; }
elseif ($us['battle'] && !in_array($us['id'],$fbattle->team_mine)) { echo "Нельзя лечить противников!"; }
else {
if ($user['sex'] == 1) {$action="";}
else {$action="а";}
if(($us['hp']+30) > $us['maxhp']) {
$hp = $us['maxhp'];
} else {
$hp = $us['hp']+30;
}
if ($user['battle'] > 0) {
//mysql_query('UPDATE `logs` SET `log` = CONCAT(`log`,\'<span class=date>'.date("H:i").'</span> '.nick::id($user['id'])->short().' использовал заклятие восстановления энергии '.(($us['id']!=$user['id'])?"на ".nick::id($us['id'])->short():"").' и восстановил уровень жизни <B>+60</B> ['.($hp).'/'.$us['maxhp'].']<BR>\') WHERE `id` = '.$us['battle'].'');
$fbattle->AddToLog('<span class=date>'.date("H:i").'</span> '.nick::id($user['id'])->short().' использовал'.$action.' заклятие восстановления энергии '.(($us['id']!=$user['id'])?"на ".nick::id($us['id'])->short():"").' и восстановил'.$action.' уровень жизни <B>+30</B> ['.($hp).'/'.$us['maxhp'].']<BR>');
//$fbattle->AddToLog('');
mysql_query("UPDATE `battle` SET `to1` = '".time()."', `to2` = '".time()."' WHERE `id` = ".$user['battle']." LIMIT 1;");
$fbattle->write_log ();
}
mysql_query("UPDATE `users` SET `hp` = ".$hp." WHERE `id` = ".$us['id'].";");
echo "Вы восстановили 30 НР персонажу ".$us['login']."!";
$bet=1;
}
echo "</B></FONT>";