game/modules_data/moder/v_carcer.php

28 lines
758 B
PHP
Raw Normal View History

2023-03-31 18:42:06 +00:00
<?php
2023-12-02 00:37:58 +00:00
if (!defined('GAME')) {
die();
2022-06-06 21:30:34 +00:00
}
2023-12-02 00:37:58 +00:00
if ($p['szatoch'] != 1 && $p['citym1'] != 1) {
$uer = 'У Вас нет прав на использование данного заклятия';
return;
}
$uu = \Core\Db::getRow('select id, login from users where login = ? order by id limit 1', [$_POST['logingo']]);
if (!isset($uu['id'])) {
$uer = 'Персонаж не найден в этом городе';
return;
}
(new \Moderation\Moderation($uu['id']))->unprison();
2022-06-06 21:30:34 +00:00
2023-12-02 00:37:58 +00:00
$uer = "Персонаж {$uu['login']} был выпущен из тюрьмы.";
2023-01-28 02:24:37 +00:00
$cmsg = new ChatMessage();
$cmsg->setRoom($u->info['room']);
2023-12-02 00:37:58 +00:00
$cmsg->setText("[img[items/jail_off.gif]] $uer");
2023-01-28 02:24:37 +00:00
$cmsg->setType(6);
$cmsg->setTypeTime(1);
(new Chat())->sendMsg($cmsg);