battles/magic/ct3_100.php

50 lines
2.1 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` = '{$_POST['target']}' LIMIT 1;"));
$owntravmadb = mysql_query("SELECT * FROM `effects` WHERE `owner` = ".$us['id']." AND (`type`=12 OR `type`=11 OR `type`=13 OR `type`=14) ;");
$ownt = mysql_fetch_array(mysql_query("SELECT * FROM `effects` WHERE `owner` = ".$us['id']." AND (`type`=12 OR `type`=11 OR `type`=13 OR `type`=14) LIMIT 1 ;"));
$magic = mysql_fetch_array(mysql_query("SELECT `chanse` FROM `magic` WHERE `id` = '50' ;"));
if ($user['intel'] >= 8) {
$int=$magic['chanse'] + ($user['intel'] - 8)*3;
if ($int>98){$int=99;}
}
else {$int=0;}
if ($user['battle'] > 0) {
echo "Не в бою...";
} elseif ($us['battle'] > 0) {
echo "Персонаж в бою...";
} elseif (!$ownt['type']) {
echo "У персонажа нет травм...";
} elseif ($user['room'] != $us['room']) {
echo "Персонаж в другой комнате!";
} elseif (!$us['online']) {
echo "Персонаж не в игре!";
} else {
if ($user['sex'] == 1) {$action="исцелил";}
else {$action="исцелила";}
if ($user['align'] > '2' && $user['align'] < '3') {
$angel="Ангел";
}
elseif ($user['align'] > '1' && $user['align'] < '2') {
$angel="Персонаж";
}
$travm="легких";
$bet=1;
while ($owntravma = mysql_fetch_array($owntravmadb)) {
if ($owntravma['type'] == 13) {$travm="тяжелых";}
elseif ($owntravma['type'] == 12 && $travm != "тяжелых") {$travm="средних";}
elseif ($owntravma['type'] == 14 && $travm != "тяжелых" && $travm != "средних") {$travm="неизлечимых";}
deltravma($owntravma['id']);
addActions(time(), 'heal_'.$owntravma['id'], 0, $user['id']);
}
echo "Персонаж &quot;{$_POST['target']}&quot; исцелен!";
addch("<img src=i/magic/cure3.gif> ".$angel." &quot;{$user['login']}&quot; ".$action." от ".$travm." травм &quot;{$_POST['target']}&quot;");
}
?>