initial commit
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
|
||||
if ($_SESSION['uid'] == null) header("Location: index.php");
|
||||
if($user['invis'] == 1) { $user['login'] = '<b><i>невидимка</i></b>'; };
|
||||
if (($user['room'] > 2000) && ($user['room'] < 2100)) {echo "Не в Проходе...";}
|
||||
else {
|
||||
$magictime = (time()+10*60*10);
|
||||
$target=$_POST['target'];
|
||||
$tar = mysql_fetch_array(mysql_query("SELECT `id`,`align`,`room` FROM `users` WHERE `login` = '{$_POST['target']}' LIMIT 1;"));
|
||||
if ($tar['id']) {
|
||||
$effect = mysql_fetch_array(mysql_query("SELECT `time` FROM `effects` WHERE `owner` = '{$tar['id']}' and `type` = '10' LIMIT 1;"));
|
||||
if ($effect['time']) {
|
||||
echo "<font color=red><b>На персонаже \"$target\" уже есть путы </b></font>";
|
||||
}
|
||||
else {
|
||||
|
||||
if ($tar['room']==$user['room']) {
|
||||
if (mysql_query("INSERT INTO `effects` (`owner`,`name`,`time`,`type`) values ('".$tar['id']."','Паралич','$magictime',10);")) {
|
||||
$ldtarget=$target;
|
||||
|
||||
if ($user['sex'] == 1) {$action="паролизовал";}
|
||||
else {$action="паролизовала";}
|
||||
|
||||
$messch="Персонаж "{$user['login']}" $action "$target"";
|
||||
|
||||
addch("<img src=i/magic/chains.gif> $messch");
|
||||
echo "<font color=red><b>Вы парализовали персонажа \"$target\"</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>Персонаж \"$target\" не существует!<b></font>";
|
||||
}}
|
||||
?>
|
||||
Reference in New Issue
Block a user