battles/magic/cure_35.php

28 lines
1.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
$battle = mysql_fetch_array(mysql_query('SELECT `id` FROM `battle` WHERE `id` = "'.$user['battle'].'" LIMIT 1'));
$t1 = explode(";", $battle['t1']);
if(in_array($user['id'], $t1)) {
$ttt = 1;
} else {
$ttt = 2;
}
if($user['battle'] <= 0) {
echo 'Это боевая магия ...';
} if($user['battle'] > 0 && $user['hp'] == $user['maxhp']) {
echo 'Ваше здоровье, и так полное ...';
} elseif($user['battle'] > 0 && $user['hp'] <= 0) {
echo 'Вы мертвы ...';
} else {
if($user['invis'] == 1) { $lod = '<i><b>невидимка</b></i>'; } else { $lod = Nick::id($user['id'])->short(); }
$hp = floor($user['maxhp']*0.35);
addlog($battle['id'], '<span class=date>'.date("H:i").'</span> '.$lod.' использовал заклятие Воcстановление энергии 35%.<BR>');
$user['hp'] += $hp;
if($user['hp'] > $user['maxhp']) {
$user['hp'] = $user['maxhp'];
}
mysql_query('UPDATE `users` SET `hp` = "'.$user['hp'].'" WHERE `id` = "'.$user['id'].'" LIMIT 1');
echo 'Успешно';
$bet = 1;
}