Убрал send в чат из user::class. Убрал лишние вызовы.

This commit is contained in:
Ivor Barhansky 2023-02-02 17:39:42 +02:00
parent a9dc9af61e
commit 253a8dca63
10 changed files with 622 additions and 586 deletions

View File

@ -3728,11 +3728,13 @@ class Battle
); );
if (isset($a['id'])) { if (isset($a['id'])) {
if ($a['eda'] < 1) { if ($a['eda'] < 1) {
$u->send( $cmsg = new ChatMessage();
'', $this->users[$i]['room'], $this->users[$i]['city'], '', $cmsg->setRoom($this->users[$i]['room']);
$this->users[$i]['login'], '<strong>' . $a['name'] . '</strong> нуждается в еде...', $cmsg->setCity($this->users[$i]['city']);
time(), 6, 0, 0, 0, 1 $cmsg->setTo($this->users[$i]['login']);
); $cmsg->setText('<strong>' . $a['name'] . '</strong> нуждается в еде...');
$cmsg->setType(6);
$chat->sendMsg($cmsg);
} }
} }
} }

View File

@ -108,19 +108,17 @@ class Chat
text, text,
time, time,
type, type,
toChat,
spam, spam,
invis, invis,
da, da,
`delete`, `delete`,
global,
molch, molch,
typeTime, typeTime,
dn, dn,
frv frv
) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)'; ) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)';
$args = [ $args = [
$chatMessage->getNew(), 1,
$chatMessage->getSound(), $chatMessage->getSound(),
$chatMessage->getColor(), $chatMessage->getColor(),
$chatMessage->getCity(), $chatMessage->getCity(),
@ -130,12 +128,10 @@ class Chat
$chatMessage->getText(), $chatMessage->getText(),
$chatMessage->getTime(), $chatMessage->getTime(),
$chatMessage->getType(), $chatMessage->getType(),
$chatMessage->getToChat(),
$chatMessage->getSpam(), $chatMessage->getSpam(),
$chatMessage->getInvis(), $chatMessage->getInvis(),
$chatMessage->getDa(), $chatMessage->getDa(),
$chatMessage->getDelete(), $chatMessage->getDelete(),
$chatMessage->getGlobal(),
$chatMessage->getMolch(), $chatMessage->getMolch(),
$chatMessage->getTypeTime(), $chatMessage->getTypeTime(),
$chatMessage->getDn(), $chatMessage->getDn(),

View File

@ -5,7 +5,6 @@
class ChatMessage class ChatMessage
{ {
private int $new = 1;
private string $city = 'capitalcity'; private string $city = 'capitalcity';
private int $room = 0; private int $room = 0;
private string $login = ''; private string $login = '';
@ -13,7 +12,6 @@ class ChatMessage
private string $text; private string $text;
private int $time = 0; private int $time = 0;
private int $type = 0; private int $type = 0;
private int $toChat = 0;
private int $typeTime = 0; private int $typeTime = 0;
private string $color = '#000'; private string $color = '#000';
private int $sound = 0; private int $sound = 0;
@ -23,7 +21,6 @@ class ChatMessage
private int $da = 0; private int $da = 0;
private int $delete = 0; private int $delete = 0;
private int $molch = 0; private int $molch = 0;
private int $global = 0;
private int $dn = 0; private int $dn = 0;
/** /**
* Феерверки, чёрт подери! * Феерверки, чёрт подери!
@ -48,22 +45,6 @@ class ChatMessage
$this->dn = $dn; $this->dn = $dn;
} }
/**
* @return int
*/
public function getGlobal(): int
{
return $this->global;
}
/**
* @param int $global
*/
public function setGlobal(int $global): void
{
$this->global = $global;
}
/** /**
* @return int * @return int
*/ */
@ -161,14 +142,6 @@ class ChatMessage
$this->sound = $sound; $this->sound = $sound;
} }
/**
* @return int
*/
public function getNew(): int
{
return $this->new;
}
/** /**
* @return string * @return string
*/ */
@ -231,14 +204,6 @@ class ChatMessage
return $this->type; return $this->type;
} }
/**
* @return int
*/
public function getToChat(): int
{
return $this->toChat;
}
/** /**
* @return int * @return int
*/ */
@ -254,16 +219,6 @@ class ChatMessage
return $this->color; return $this->color;
} }
/**
* @param int $new
*/
public function setNew(int $new): void
{
if ($new !== 1) {
$this->new = $new;
}
}
/** /**
* @param string $city * @param string $city
*/ */
@ -320,14 +275,6 @@ class ChatMessage
$this->type = $type; $this->type = $type;
} }
/**
* @param int $toChat
*/
public function setToChat(int $toChat): void
{
$this->toChat = $toChat;
}
/** /**
* @param int $typeTime * @param int $typeTime
*/ */

View File

@ -2506,10 +2506,13 @@ class Magic
} }
} else { } else {
$u->send( $cmsg = new ChatMessage();
'', $u->info['room'], $u->info['city'], '', $u->info['login'], $cmsg->setRoom($u->info['room']);
'<b>' . $a['name'] . '</b> нуждается в еде...', time(), 6, 0, 0, 0, 1 $cmsg->setCity($u->info['city']);
); $cmsg->setTo($u->info['login']);
$cmsg->setText('<strong>' . $a['name'] . '</strong> нуждается в еде...');
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
} }
} }
} }

View File

@ -11198,61 +11198,6 @@ LIMIT 1'
return $rt; return $rt;
} }
/**
* Уродец, дублирующий Chat то тут то там.
* Сидишь, никого не трогаешь, правишь и вдруг класс User тебя с размаху мордой в грязь!
* Привет пачка вызовов буквально отовсюду, потому что класс User это же так удобно, класс User он же везде...
* @param string $color
* @param int $room
* @param string $city
* @param string $from
* @param string $to
* @param string $text
* @param int $time
* @param int $type
* @param int $toChat
* @param int $spam
* @param int $sound
* @param int $new
* @param int $typeTime
* @param int $global
* @deprecated
* @todo убрать нахуй заменив нативными вызовами.
*/
public function send(
string $color,
int $room,
string $city,
string $from,
string $to,
string $text,
int $time,
int $type,
int $toChat,
int $spam,
int $sound,
int $new = 1,
int $typeTime = 0,
int $global = 0
) {
$cmsg = new ChatMessage();
$cmsg->setColor($color);
$cmsg->setCity($city);
$cmsg->setRoom($room);
$cmsg->setLogin($from);
$cmsg->setTo($to);
$cmsg->setText($text);
$cmsg->setTime($time);
$cmsg->setType($type);
$cmsg->setToChat($toChat);
$cmsg->setSpam($spam);
$cmsg->setSound($sound);
$cmsg->setNew($new);
$cmsg->setTypeTime($typeTime);
$cmsg->setGlobal($global);
(new Chat())->sendMsg($cmsg);
}
//получаем уровень //получаем уровень
public function testLevel() public function testLevel()
{ {
@ -11322,6 +11267,12 @@ LIMIT 1'
} }
$i = 0; $i = 0;
$ult = 0; $ult = 0;
$sex1 = '';
if ($this->info['sex'] == 1) {
$sex1 = 'ла';
}
while ($i != 1) { while ($i != 1) {
if (Config::get('nolevel') && $this->info['exp'] >= $lvl['exp'] && isset($lvln['upLevel'])) { if (Config::get('nolevel') && $this->info['exp'] >= $lvl['exp'] && isset($lvln['upLevel'])) {
$tlus = mysql_fetch_array( $tlus = mysql_fetch_array(
@ -11338,7 +11289,9 @@ LIMIT 1'
); );
} }
} }
if ($this->info['exp'] >= $lvl['exp'] && isset($lvln['upLevel'])) { if ($this->info['exp'] < $lvl['exp'] || !isset($lvln['upLevel'])) {
$i = 1;
} else {
if ($lvl['nextLevel'] > $this->info['level']) { if ($lvl['nextLevel'] > $this->info['level']) {
//повышаем выносливость //повышаем выносливость
$a4 = 1; $a4 = 1;
@ -11353,11 +11306,6 @@ LIMIT 1'
} }
$this->stats['s4'] += $a4; $this->stats['s4'] += $a4;
$sex1 = '';
if ($this->info['sex'] == 1) {
$sex1 = 'ла';
}
$ult = 1; $ult = 1;
//Рефералы //Рефералы
@ -11404,6 +11352,12 @@ LIMIT 1'
} }
} }
$cmsg = new ChatMessage();
$cmsg->setRoom($this->info['room']);
$cmsg->setCity($this->info['city']);
$cmsg->setTo($rlog['login']);
$cmsg->setType(6);
if (($rtg || !isset($mtest['id'])) && isset($rlog['id'])) { if (($rtg || !isset($mtest['id'])) && isset($rlog['id'])) {
$rfs['data'] = explode('|', $rlogs['ref_data']); $rfs['data'] = explode('|', $rlogs['ref_data']);
$ekr = '0.00'; $ekr = '0.00';
@ -11420,23 +11374,22 @@ LIMIT 1'
$rlog['id'] $rlog['id']
) . '" LIMIT 1' ) . '" LIMIT 1'
); );
if ($up) { if ($up) {
//Реферал 1-го уровня //Реферал 1-го уровня
$krtxt = ''; $krtxt = '';
if ($kr > 0) { if ($kr > 0) {
$krtxt .= '' . $kr . ' КР'; $krtxt .= "$kr КР";
if ($ekr > 0) {
$krtxt .= ', ';
}
} }
if ($ekr > 0) { if ($ekr > 0) {
$krtxt .= '' . $ekr . ' ЕКР'; $krtxt .= ", $ekr ЕКР";
} }
$this->send(
'', $this->info['room'], $this->info['city'], '', $rlog['login'], $cmsg->setText(
'Ваш реферал <strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! Вам зачисленно ' . $krtxt, 'Ваш реферал <strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! Вам зачисленно ' . $krtxt
-1, 6, 0, 0, 0, 1
); );
(new Chat())->sendMsg($cmsg);
$rlog['catch'] += $bn['add_bank']; $rlog['catch'] += $bn['add_bank'];
mysql_query( mysql_query(
'UPDATE `users` SET `catch` = "' . $rlog['catch'] . '" WHERE `id` = "' . $rlog['id'] . '" LIMIT 1' 'UPDATE `users` SET `catch` = "' . $rlog['catch'] . '" WHERE `id` = "' . $rlog['id'] . '" LIMIT 1'
@ -11455,20 +11408,17 @@ LIMIT 1'
if (isset($rlog['id'])) { if (isset($rlog['id'])) {
$krtxt = ''; $krtxt = '';
if ($kr > 0) { if ($kr > 0) {
$krtxt .= '' . $kr . ' КР'; $krtxt .= "$kr КР";
if ($ekr > 0) {
$krtxt .= ', ';
}
} }
if ($ekr > 0) { if ($ekr > 0) {
$krtxt .= '' . $ekr . ' ЕКР'; $krtxt .= ", $ekr ЕКР";
} }
$this->send(
'', $this->info['room'], $this->info['city'], '', $cmsg->setText(
$rlog['login'], 'Ваш реферал <strong>' . $this->info['login'] . '</strong> (2-го уровня от &quot;' . $llogin . '&quot; ) достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! Вам зачисленно ' . $krtxt
'Ваш реферал <strong>' . $this->info['login'] . '</strong> (2-го уровня от &quot;' . $llogin . '&quot; ) достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! Вам зачисленно ' . $krtxt,
-1, 6, 0, 0, 0, 1
); );
(new Chat())->sendMsg($cmsg);
$rlog['catch'] += $bn['add_bank']; $rlog['catch'] += $bn['add_bank'];
mysql_query( mysql_query(
'UPDATE `users` SET `money` = `money` + ' . $kr . ',`money2` = `money2` + ' . $ekr . ' WHERE `id` = "' . $rlog['id'] . '" LIMIT 1' 'UPDATE `users` SET `money` = `money` + ' . $kr . ',`money2` = `money2` + ' . $ekr . ' WHERE `id` = "' . $rlog['id'] . '" LIMIT 1'
@ -11487,20 +11437,17 @@ LIMIT 1'
if (isset($rlog['id'])) { if (isset($rlog['id'])) {
$krtxt = ''; $krtxt = '';
if ($kr > 0) { if ($kr > 0) {
$krtxt .= '' . $kr . ' КР'; $krtxt .= "$kr КР";
if ($ekr > 0) {
$krtxt .= ', ';
}
} }
if ($ekr > 0) { if ($ekr > 0) {
$krtxt .= '' . $ekr . ' ЕКР'; $krtxt .= ", $ekr ЕКР";
} }
$this->send(
'', $this->info['room'], $this->info['city'], '', $cmsg->setText(
$rlog['login'], 'Ваш реферал <strong>' . $this->info['login'] . '</strong> (3-го уровня от &quot;' . $llogin2 . '&quot; (Реферал ' . $llogin . ') ) достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! Вам зачисленно ' . $krtxt
'Ваш реферал <strong>' . $this->info['login'] . '</strong> (3-го уровня от &quot;' . $llogin2 . '&quot; (Реферал ' . $llogin . ') ) достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! Вам зачисленно ' . $krtxt,
-1, 6, 0, 0, 0, 1
); );
(new Chat())->sendMsg($cmsg);
$rlog['catch'] += $bn['add_bank']; $rlog['catch'] += $bn['add_bank'];
mysql_query( mysql_query(
'UPDATE `users` SET `money` = `money` + ' . $kr . ',`money2` = `money2` + ' . $ekr . ' WHERE `id` = "' . $rlog['id'] . '" LIMIT 1' 'UPDATE `users` SET `money` = `money` + ' . $kr . ',`money2` = `money2` + ' . $ekr . ' WHERE `id` = "' . $rlog['id'] . '" LIMIT 1'
@ -11512,11 +11459,10 @@ LIMIT 1'
} }
} }
} else { } else {
$this->send( $cmsg->setText(
'', $this->info['room'], $this->info['city'], '', $rlog['login'], 'Ваш реферал <strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! (Ошибка зачисления, обратитесь с Администрации проекта) На Ваш банковский счет №' . $bnk . ' зачисленно ' . $ekr . ' кр.'
'Ваш реферал <strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! (Ошибка зачисления, обратитесь с Администрации проекта) На Ваш банковский счет №' . $bnk . ' зачисленно ' . $ekr . ' кр.',
-1, 6, 0, 0, 0, 1
); );
(new Chat())->sendMsg($cmsg);
} }
} }
// //
@ -11527,11 +11473,10 @@ LIMIT 1'
); );
// //
} elseif (isset($rlog['id'])) { } elseif (isset($rlog['id'])) {
$this->send( $cmsg->setText(
'', $this->info['room'], $this->info['city'], '', $rlog['login'], 'Ваш реферал <strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! <small style="color: red">(Персонаж не активирован, либо у вас совпадают IP! Разрешено не более 1 такого реферала!)</small>'
'Ваш реферал <strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $lvl['nextLevel'] . '! <small><font color=red>(Персонаж не активирован, либо у вас совпадают IP! Разрешено не более 1 такого реферала!)</font></small>',
-1, 6, 0, 0, 0, 1
); );
(new Chat())->sendMsg($cmsg);
} }
} }
} }
@ -11559,27 +11504,28 @@ LIMIT 1'
); );
$this->info['upLevel'] += 1; $this->info['upLevel'] += 1;
$rt++; $rt++;
} else {
$i = 1;
} }
} }
if ($ult == 1) { if ($ult == 1) {
$chat = new Chat();
$cmsg = new ChatMessage();
$cmsg->setRoom($this->info['room']);
$cmsg->setCity($this->info['city']);
$cmsg->setType(6);
if ($this->info['level'] == 4 || $this->info['level'] == 8) { if ($this->info['level'] == 4 || $this->info['level'] == 8) {
//Убрать задержки на пещеры //Убрать задержки на пещеры
mysql_query( mysql_query(
'DELETE FROM `actions` WHERE `uid` = "' . $this->info['id'] . '" AND `vars` LIKE "psh%"' 'DELETE FROM `actions` WHERE `uid` = "' . $this->info['id'] . '" AND `vars` LIKE "psh%"'
); );
$this->send( $cmsg->setTo($this->info['login']);
'', $this->info['room'], $this->info['city'], '', $this->info['login'], $cmsg->setText('Обязательно используйте свитки и эликсиры в своем инвентаре!!!!!!!!!!!!!!!.');
'Обязательно используйте свитки и эликсиры в своем инвентаре!!!!!!!!!!!!!!!.', -1, 6, 0, 0, $chat->sendMsg($cmsg);
0, 1
);
} }
$this->send(
'', $this->info['room'], $this->info['city'], '', '', $cmsg->setTypeTime(2);
'<strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $this->info['level'] . '!', $cmsg->setText('<strong>' . $this->info['login'] . '</strong> достиг' . $sex1 . ' уровня ' . $this->info['level'] . '!');
time(), 6, 0, 0, 0, 1, 2 $chat->sendMsg($cmsg);
); // Наверно тут
} }
if ($rt > 0) { if ($rt > 0) {
$this->info['stopexp'] = 0; $this->info['stopexp'] = 0;
@ -11650,11 +11596,13 @@ LIMIT 1'
) )
); );
$a['stats'] = $a['stats']['stats']; $a['stats'] = $a['stats']['stats'];
$this->send( $cmsg = new ChatMessage();
'', $this->info['room'], $this->info['city'], '', $this->info['login'], $cmsg->setRoom($this->info['room']);
'<strong>' . $a['name'] . '</strong> достиг ' . $a['level'] . ' уровня!', time(), 6, 0, $cmsg->setCity($this->info['city']);
0, 0, 1 $cmsg->setTo($this->info['login']);
); $cmsg->setText('<strong>' . $a['name'] . '</strong> достиг ' . $a['level'] . ' уровня!');
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
mysql_query( mysql_query(
'UPDATE `users_animal` SET `stats` = "' . $a['stats'] . '",`level`="' . $a['level'] . '",`max_exp`="' . $a['max_exp'] . '" WHERE `id` = "' . $a['id'] . '" LIMIT 1' 'UPDATE `users_animal` SET `stats` = "' . $a['stats'] . '",`level`="' . $a['level'] . '",`max_exp`="' . $a['max_exp'] . '" WHERE `id` = "' . $a['id'] . '" LIMIT 1'
); );

View File

@ -1,51 +1,65 @@
<? <?php
if( isset($s[1]) && $s[1] == '106/door3' ) { if (isset($s[1]) && $s[1] == '106/door3') {
/* /*
Сундук: Кровавый подземник (4561) Сундук: Кровавый подземник (4561)
*/ */
//Все переменные сохранять в массиве $vad ! //Все переменные сохранять в массиве $vad !
$vad = array( $vad = [
'go' => true 'go' => true,
); ];
if( $vad['go'] == true ) { mysql_query(
mysql_query('INSERT INTO `dungeon_actions` (`dn`,`time`,`x`,`y`,`uid`,`vars`,`vals`) VALUES ( 'INSERT INTO `dungeon_actions` (`dn`,`time`,`x`,`y`,`uid`,`vars`,`vals`) VALUES (
"'.$u->info['dnow'].'","'.time().'","'.$obj['x'].'","'.$obj['y'].'","'.$u->info['id'].'","obj_act'.$obj['id'].'","'.$vad['bad'].'" "' . $u->info['dnow'] . '","' . time(
)'); ) . '","' . $obj['x'] . '","' . $obj['y'] . '","' . $u->info['id'] . '","obj_act' . $obj['id'] . '","' . $vad['bad'] . '"
$vad['qst'] = mysql_fetch_array(mysql_query('SELECT * FROM `dialog_act` WHERE `uid` = "'.$u->info['id'].'" AND `var` = "noobqst1" AND `val` = 1 LIMIT 1')); )'
);
$vad['itm'] = mysql_fetch_array(mysql_query('SELECT * FROM `items_users` WHERE `uid` = "'.$u->info['id'].'" AND (`item_id` = 724 OR `item_id` = 4704) LIMIT 1')); $vad['qst'] = mysql_fetch_array(
mysql_query(
if(!isset($vad['qst']['id']) || !isset($vad['itm']['id'])) { 'SELECT * FROM `dialog_act` WHERE `uid` = "' . $u->info['id'] . '" AND `var` = "noobqst1" AND `val` = 1 LIMIT 1'
$r = 'Дверь закрыта. Сначала выполните задания Учителя и купите Футболку с Эликсиром.'; )
}else{ );
//Начало обучения
$humor = array( $vad['itm'] = mysql_fetch_array(
0 => array( mysql_query(
':maniac: Сильно не бейте ;)',':beggar: Будет попрошайничать - бейте!',':pal: Возможно светлый!', 'SELECT * FROM `items_users` WHERE `uid` = "' . $u->info['id'] . '" AND (`item_id` = 724 OR `item_id` = 4704) LIMIT 1'
':vamp: Возможно темный!',':susel: Судя по здоровенному бицепсу - это мужик!',':duel: И сразу же кинулся в бой!', )
':friday: Не долго думав он начал искать собутыльника!',':doc: Лекарь: Новичок! Да, да! Ты! Если тебя сломают - у знахаря тебя соберут обратно!' );
),
1 => array( if (!isset($vad['qst']['id']) || !isset($vad['itm']['id'])) {
':maniac: Помните! Девочек не бьем ;)',':nail: Она красит ногти, не отвлекайте все сразу ;)',':pal: Возможно светлая!', $r = 'Дверь закрыта. Сначала выполните задания Учителя и купите Футболку с Эликсиром.';
':vamp: Возможно темная!',':rev: Судя по красивой одежде - это женщина!',':hug: И сразу же кинулась всех целовать!', } else {
':angel2: Ангел сошел с небес...' //Начало обучения
) $humor = [
); 0 => [
$humor = $humor[$u->info['sex']]; ':maniac: Сильно не бейте ;)', ':beggar: Будет попрошайничать - бейте!', ':pal: Возможно светлый!',
//$u->info['fnq'] = 1; ':vamp: Возможно темный!', ':susel: Судя по здоровенному бицепсу - это мужик!', ':duel: И сразу же кинулся в бой!',
//mysql_query('UPDATE `users` SET `fnq` = "'.$u->info['fnq'].'" WHERE `id` = "'.$u->info['id'].'" LIMIT 1'); ':friday: Не долго думав он начал искать собутыльника!', ':doc: Лекарь: Новичок! Да, да! Ты! Если тебя сломают - у знахаря тебя соберут обратно!',
//Отправляем сообщение в чат о новичке ],
mysql_query('UPDATE `items_users` SET `delete` = "'.time().'" WHERE `uid` = "'.$u->info['id'].'" AND `delete` = 0 AND `item_id` = 4703'); 1 => [
mysql_query('UPDATE `users` SET `room` = 4 WHERE `id` = "'.$u->info['id'].'" LIMIT 1'); ':maniac: Помните! Девочек не бьем ;)', ':nail: Она красит ногти, не отвлекайте все сразу ;)', ':pal: Возможно светлая!',
mysql_query('UPDATE `stats` SET `hpNow` = 1000,`mpNow` = 1000,`dn` = 0 , `dnow` = 0 , `x` = 0 , `y` = 0 , `s` = 0 WHERE `id` = "'.$u->info['id'].'" LIMIT 1'); ':vamp: Возможно темная!', ':rev: Судя по красивой одежде - это женщина!', ':hug: И сразу же кинулась всех целовать!',
$u->send('','','','','','В нашем мире появился новый игрок &quot;<b>' . $u->info['login'] . '</b>&quot;! '.$humor[rand(0,count($humor)-1)].'',time(),6,0,0,0,1,0); ':angel2: Ангел сошел с небес...',
//mysql_query('UPDATE `stats` SET `x` = 0,`y` = 5 WHERE `id` = "'.$u->info['id'].'" LIMIT 1'); ],
header('location: main.php'); ];
die(); $humor = $humor[$u->info['sex']];
} //Отправляем сообщение в чат о новичке
} mysql_query(
'UPDATE `items_users` SET `delete` = "' . time(
unset($vad); ) . '" WHERE `uid` = "' . $u->info['id'] . '" AND `delete` = 0 AND `item_id` = 4703'
);
mysql_query('UPDATE `users` SET `room` = 4 WHERE `id` = "' . $u->info['id'] . '" LIMIT 1');
mysql_query(
'UPDATE `stats` SET `hpNow` = 1000,`mpNow` = 1000,`dn` = 0 , `dnow` = 0 , `x` = 0 , `y` = 0 , `s` = 0 WHERE `id` = "' . $u->info['id'] . '" LIMIT 1'
);
array_shift($humor);
$cmsg = new ChatMessage();
$cmsg->setText('В нашем мире появился новый игрок &quot;<b>' . $u->info['login'] . '</b>&quot;! ' . $humor[0]);
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
header('location: main.php');
die();
}
unset($vad);
} }
?>

View File

@ -347,11 +347,13 @@ if (isset($_GET['usemod'])) {
} }
} }
if (isset($_POST['tologin'], $_POST['message'])) { if (isset($_POST['tologin'], $_POST['message'])) {
$u->send( $cmsg = new ChatMessage();
'', 1, $infcity, '', htmlspecialchars($_POST['tologin'], null), $cmsg->setRoom(1);
'<font color=darkblue>Сообщение телеграфом от </font> <b>' . $u->info['login'] . '</b>: ' . $_POST['message'] . '', $cmsg->setCity($infcity);
-1, 6, 0, 0, 0, 1 $cmsg->setTo($_POST['tologin']);
); $cmsg->setText('<span style="color: darkblue; ">Сообщение телеграфом от </span> <b>' . $u->info['login'] . '</b>: ' . $_POST['message']);
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
} }
?> ?>
<table> <table>

View File

@ -1,207 +1,284 @@
<? <?php
if(!defined('GAME')){ if (!defined('GAME')) {
die(); die();
} }
if($u->room['file']=='an/bk'){ if ($u->room['file'] == 'an/bk') {
$tst = mysql_fetch_array(mysql_query('SELECT * FROM `dialog_act` WHERE `uid` = "'.$u->info['id'].'" AND `var` = "noobqst1" LIMIT 1')); $tst = mysql_fetch_array(
if(!isset($tst['id'])) { mysql_query('SELECT * FROM `dialog_act` WHERE `uid` = "' . $u->info['id'] . '" AND `var` = "noobqst1" LIMIT 1')
if(isset($_GET['noobgo'])) { );
if($_GET['noobgo'] == 1) { if (!isset($tst['id'])) {
//Согласился (создаем пещеру и телепортируем туда if (isset($_GET['noobgo'])) {
if ($_GET['noobgo'] == 1) {
$ins = mysql_query('INSERT INTO `dungeon_now` (`city`,`uid`,`id2`,`name`,`time_start`) //Согласился (создаем пещеру и телепортируем туда
VALUES ("'.$u->info['city'].'","'.$u->info['id'].'","106","Академия Новичков","'.time().'")');
if($ins){ $ins = mysql_query(
$zid = mysql_insert_id(); 'INSERT INTO `dungeon_now` (`city`,`uid`,`id2`,`name`,`time_start`)
//обновляем пользователей VALUES ("' . $u->info['city'] . '","' . $u->info['id'] . '","106","Академия Новичков","' . time() . '")'
$su = mysql_query('SELECT `u`.`id`,`st`.`dn` FROM `stats` AS `st` LEFT JOIN `users` AS `u` ON (`st`.`id` = `u`.`id`) WHERE `st`.`id`="'.$u->info['id'].'"'); );
$ids = ''; if ($ins) {
$zid = mysql_insert_id();
$map_locs = array(); //обновляем пользователей
$spm2 = mysql_query('SELECT `id`,`x`,`y` FROM `dungeon_map` WHERE `id_dng` = "106"'); $su = mysql_query(
while( $plm2 = mysql_fetch_array( $spm2 ) ) { 'SELECT `u`.`id`,`st`.`dn` FROM `stats` AS `st` LEFT JOIN `users` AS `u` ON (`st`.`id` = `u`.`id`) WHERE `st`.`id`="' . $u->info['id'] . '"'
$map_locs[] = array($plm2['x'],$plm2['y']); );
} $ids = '';
unset( $spm2 , $plm2 );
$map_locs = [];
$pxd = 0; $spm2 = mysql_query('SELECT `id`,`x`,`y` FROM `dungeon_map` WHERE `id_dng` = "106"');
while( $pu = mysql_fetch_array($su) ) { while ($plm2 = mysql_fetch_array($spm2)) {
$pxd++; $map_locs[] = [$plm2['x'], $plm2['y']];
$ids .= ' `id` = "'.$pu['id'].'" OR'; }
} unset($spm2, $plm2);
$ids = rtrim($ids,'OR');
$snew = 0; $pxd = 0;
$upd1 = mysql_query('UPDATE `stats` SET `s`="4",`res_s`="1",`x`="0",`y`="0",`res_x`="0",`res_y`="0",`dn` = "0",`dnow` = "'.$zid.'" WHERE '.$ids.''); while ($pu = mysql_fetch_array($su)) {
if( $upd1 ){ $pxd++;
$upd2 = mysql_query('UPDATE `users` SET `room` = "391" WHERE '.$ids.''); $ids .= ' `id` = "' . $pu['id'] . '" OR';
//Добавляем ботов и обьекты в пещеру $zid с for_dn = $dungeon['id'] }
//Добавляем ботов $ids = rtrim($ids, 'OR');
$vls = ''; $snew = 0;
$sp = mysql_query('SELECT * FROM `dungeon_bots` WHERE `for_dn` = "106"'); $upd1 = mysql_query(
while( $pl = mysql_fetch_array( $sp ) ) { 'UPDATE `stats` SET `s`="4",`res_s`="1",`x`="0",`y`="0",`res_x`="0",`res_y`="0",`dn` = "0",`dnow` = "' . $zid . '" WHERE ' . $ids . ''
if( $pl['id_bot'] == 0 && $pl['bot_group'] !=''){ );
$bots = explode( ',', $pl['bot_group'] ); if ($upd1) {
$pl['id_bot'] = (int)$bots[rand(0, count($bots)-1 )]; $upd2 = mysql_query('UPDATE `users` SET `room` = "391" WHERE ' . $ids . '');
} //Добавляем ботов и обьекты в пещеру $zid с for_dn = $dungeon['id']
if( $pl['id_bot'] > 0 )$vls .= '("'.$zid.'","'.$pl['id_bot'].'","'.$pl['colvo'].'","'.$pl['items'].'","'.$pl['x'].'","'.$pl['y'].'","'.$pl['dialog'].'","'.$pl['items'].'","'.$pl['go_bot'].'","'.$pl['noatack'].'"),'; //Добавляем ботов
unset($bots); $vls = '';
} $sp = mysql_query('SELECT * FROM `dungeon_bots` WHERE `for_dn` = "106"');
$vls = rtrim($vls,','); while ($pl = mysql_fetch_array($sp)) {
$ins1 = mysql_query('INSERT INTO `dungeon_bots` (`dn`,`id_bot`,`colvo`,`items`,`x`,`y`,`dialog`,`atack`,`go_bot`,`noatack`) VALUES '.$vls.''); if ($pl['id_bot'] == 0 && $pl['bot_group'] != '') {
//Добавляем обьекты $bots = explode(',', $pl['bot_group']);
$vls = ''; $pl['id_bot'] = (int)$bots[rand(0, count($bots) - 1)];
$sp = mysql_query('SELECT * FROM `dungeon_obj` WHERE `for_dn` = "106"'); }
while($pl = mysql_fetch_array($sp)) if ($pl['id_bot'] > 0) {
{ $vls .= '("' . $zid . '","' . $pl['id_bot'] . '","' . $pl['colvo'] . '","' . $pl['items'] . '","' . $pl['x'] . '","' . $pl['y'] . '","' . $pl['dialog'] . '","' . $pl['items'] . '","' . $pl['go_bot'] . '","' . $pl['noatack'] . '"),';
$vls .= '("'.$zid.'","'.$pl['name'].'","'.$pl['img'].'","'.$pl['x'].'","'.$pl['y'].'","'.$pl['action'].'","'.$pl['type'].'","'.$pl['w'].'","'.$pl['h'].'","'.$pl['s'].'","'.$pl['s2'].'","'.$pl['os1'].'","'.$pl['os2'].'","'.$pl['os3'].'","'.$pl['os4'].'","'.$pl['type2'].'","'.$pl['top'].'","'.$pl['left'].'","'.$pl['date'].'"),'; }
} unset($bots);
// }
$vls = rtrim($vls,','); $vls = rtrim($vls, ',');
if( $vls != '' ) { $ins1 = mysql_query(
$ins2 = mysql_query('INSERT INTO `dungeon_obj` (`dn`,`name`,`img`,`x`,`y`,`action`,`type`,`w`,`h`,`s`,`s2`,`os1`,`os2`,`os3`,`os4`,`type2`,`top`,`left`,`date`) VALUES '.$vls.''); 'INSERT INTO `dungeon_bots` (`dn`,`id_bot`,`colvo`,`items`,`x`,`y`,`dialog`,`atack`,`go_bot`,`noatack`) VALUES ' . $vls . ''
} else { );
$ins2 = true; //Добавляем обьекты
} $vls = '';
if( $upd2 && $ins1 && $ins2 ){ $sp = mysql_query('SELECT * FROM `dungeon_obj` WHERE `for_dn` = "106"');
die('<script>location="main.php?rnd='.$code.'";</script>'); while ($pl = mysql_fetch_array($sp)) {
} else { $vls .= '("' . $zid . '","' . $pl['name'] . '","' . $pl['img'] . '","' . $pl['x'] . '","' . $pl['y'] . '","' . $pl['action'] . '","' . $pl['type'] . '","' . $pl['w'] . '","' . $pl['h'] . '","' . $pl['s'] . '","' . $pl['s2'] . '","' . $pl['os1'] . '","' . $pl['os2'] . '","' . $pl['os3'] . '","' . $pl['os4'] . '","' . $pl['type2'] . '","' . $pl['top'] . '","' . $pl['left'] . '","' . $pl['date'] . '"),';
$error = 'Ошибка перехода в подземелье...'; }
} //
} else { $vls = rtrim($vls, ',');
$error = 'Ошибка перехода в подземелье...'; if ($vls != '') {
} $ins2 = mysql_query(
} else { 'INSERT INTO `dungeon_obj` (`dn`,`name`,`img`,`x`,`y`,`action`,`type`,`w`,`h`,`s`,`s2`,`os1`,`os2`,`os3`,`os4`,`type2`,`top`,`left`,`date`) VALUES ' . $vls . ''
$error = 'Ошибка перехода в подземелье...'; );
} } else {
// $ins2 = true;
//header('location: main.php'); }
die(); if ($upd2 && $ins1 && $ins2) {
}else{ die('<script>location="main.php?rnd=' . $code . '";</script>');
//Отказался (добавляем квест, системку и пошел нах) } else {
mysql_query('INSERT INTO `dialog_act` ( $error = 'Ошибка перехода в подземелье...';
}
} else {
$error = 'Ошибка перехода в подземелье...';
}
} else {
$error = 'Ошибка перехода в подземелье...';
}
//
//header('location: main.php');
die();
} else {
//Отказался (добавляем квест, системку и пошел нах)
mysql_query(
'INSERT INTO `dialog_act` (
`uid`,`var`,`time` `uid`,`var`,`time`
) VALUES ( ) VALUES (
"'.$u->info['id'].'","noobqst1","'.time().'" "' . $u->info['id'] . '","noobqst1","' . time() . '"
)'); )'
);
//Начало обучения
$humor = array(
0 => array(
':maniac: Сильно не бейте ;)',':beggar: Будет попрошайничать - бейте!',':pal: Возможно светлый!',
':vamp: Возможно темный!',':susel: Судя по здоровенному бицепсу - это мужик!',':duel: И сразу же кинулся в бой!',
':friday: Не долго думав он начал искать собутыльника!',':doc: Лекарь: Новичок! Да, да! Ты! Если тебя сломают - у знахаря тебя соберут обратно!'
),
1 => array(
':maniac: Помните! Девочек не бьем ;)',':nail: Она красит ногти, не отвлекайте все сразу ;)',':pal: Возможно светлая!',
':vamp: Возможно темная!',':rev: Судя по красивой одежде - это женщина!',':hug: И сразу же кинулась всех целовать!',
':angel2: Ангел сошел с небес...'
)
);
$humor = $humor[$u->info['sex']];
//$u->info['fnq'] = 1;
//mysql_query('UPDATE `users` SET `fnq` = "'.$u->info['fnq'].'" WHERE `id` = "'.$u->info['id'].'" LIMIT 1');
//Отправляем сообщение в чат о новичке
//mysql_query('UPDATE `items_users` SET `delete` = "'.time().'" WHERE `uid` = "'.$u->info['id'].'" AND `delete` = 0 AND `item_id` = 4703');
//mysql_query('UPDATE `users` SET `room` = 4 WHERE `id` = "'.$u->info['id'].'" LIMIT 1');
//mysql_query('UPDATE `stats` SET `hpNow` = 1000,`mpNow` = 1000,`dn` = 0 , `dnow` = 0 , `x` = 0 , `y` = 0 , `s` = 0 WHERE `id` = "'.$u->info['id'].'" LIMIT 1');
$u->send('','','','','','В нашем мире появился новый игрок &quot;<b>' . $u->info['login'] . '</b>&quot;! '.$humor[rand(0,count($humor)-1)].'',time(),6,0,0,0,1,0);
echo '<div><font color=red><b>Вы отказались от обучения, второй попытки больше не будет!</b></font></div>'; //Начало обучения
} $humor = [
}else{ 0 => [
echo '<script> ':maniac: Сильно не бейте ;)', ':beggar: Будет попрошайничать - бейте!', ':pal: Возможно светлый!',
':vamp: Возможно темный!', ':susel: Судя по здоровенному бицепсу - это мужик!', ':duel: И сразу же кинулся в бой!',
':friday: Не долго думав он начал искать собутыльника!', ':doc: Лекарь: Новичок! Да, да! Ты! Если тебя сломают - у знахаря тебя соберут обратно!',
],
1 => [
':maniac: Помните! Девочек не бьем ;)', ':nail: Она красит ногти, не отвлекайте все сразу ;)', ':pal: Возможно светлая!',
':vamp: Возможно темная!', ':rev: Судя по красивой одежде - это женщина!', ':hug: И сразу же кинулась всех целовать!',
':angel2: Ангел сошел с небес...',
],
];
$humor = $humor[$u->info['sex']];
array_shift($humor);
$cmsg = new ChatMessage();
$cmsg->setText('В нашем мире появился новый игрок &quot;<b>' . $u->info['login'] . '</b>&quot;! ' . $humor[0]);
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
echo '<div style="color: red; font-weight: bold;">Вы отказались от обучения, второй попытки больше не будет!</div>';
}
} else {
echo '<script>
function qstnoobsstart() { function qstnoobsstart() {
top.win.add(\'qstnoobsstart\',\'Вы хотите пройти обучение?\',\'\',{\'a1\':\'top.frames[\\\'main\\\'].location.href=\\\'main.php?noobgo=1\\\';\',\'a2\':\'top.frames[\\\'main\\\'].location.href=\\\'main.php?noobgo=2\\\';\',\'n\':\'<center><small>Отказавшись вы не получите награду!</small></center>\'},2,1,\'width:300px;\'); top.win.add(\'qstnoobsstart\',\'Вы хотите пройти обучение?\',\'\',{\'a1\':\'top.frames[\\\'main\\\'].location.href=\\\'main.php?noobgo=1\\\';\',\'a2\':\'top.frames[\\\'main\\\'].location.href=\\\'main.php?noobgo=2\\\';\',\'n\':\'<center><small>Отказавшись вы не получите награду!</small></center>\'},2,1,\'width:300px;\');
} }
qstnoobsstart(); qstnoobsstart();
</script>'; </script>';
} }
} }
?><script type="text/javascript" src="/js/jquery.locations.js"></script>
<link href="/css/fightclub.css" rel="stylesheet" type="text/css">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="250" valign="top">
<? $usee = $u->getInfoPers($u->info['id'],0); if($usee!=false){ echo $usee[0]; }else{ echo 'information is lost.'; } ?>
</td>
<td width="230" valign="top" style="padding-top:19px;"><? require_once('modules_data/stats_loc.php'); ?></td>
<td valign="top"><div align="right">
<? if($u->error!=''){ echo '<font color="red"><b>'.$u->error.'</b></font>'; } ?>
<table border="0" cellpadding="0" cellspacing="0">
<tr align="right" valign="top">
<td>
<? if($re!=''){ echo '<font color="red"><b>'.$re.'</b></font>'; } ?>
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="ViewLocation"><?php
if(true == false){
?><script><?php
require_once('modules_data/location/fight-club.database.php');
?>
var json = <?php echo json_encode($Response); ?>;
var tgo = <?php echo ($tmGo*10); ?>;
var tgol = <?php echo ($tmGol*10); ?>;
ViewLocation(json);
</script><?php
}else{
?>
<div style="position:relative; cursor: pointer; width: 500;" id="ione"><img src="https://img.new-combats.com/i/images/300x225/club/navig.jpg" id="img_ione" width="500" height="240" border="1"/>
<div style="position:absolute; left:241px; top:128px; width:16px; height:18px; z-index:90;"><img src="https://img.new-combats.com/i/images/300x225/fl1.gif" width="16" height="18" title="Вы находитесь в '<? echo $u->room['name']; ?>'" /></div>
<div style="position: absolute; left: 30px; top: 140px; width: 28px; height: 31px; z-index: 90;"><img onClick="alert('Проход через Зал воинов 1');" src="https://img.new-combats.com/i/images/300x225/zk_entrance.gif" width="28" height="63" title="" /></div>
<div style="position: absolute; left: 327px; top: 136px; width: 63px; height: 28px; z-index: 90;"><img onClick="alert('Проход через Зал воинов 2');" src="https://img.new-combats.com/city/zk_entrance2.gif" width="63" height="28" title="" /></div> ?>
<script type="text/javascript" src="/js/jquery.locations.js"></script>
<link href="/css/fightclub.css" rel="stylesheet" type="text/css">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="250" valign="top">
<?php $usee = $u->getInfoPers($u->info['id'], 0);
if ($usee != false) {
echo $usee[0];
} else {
echo 'information is lost.';
} ?>
</td>
<td width="230" valign="top"
style="padding-top:19px;"><?php require_once('modules_data/stats_loc.php'); ?></td>
<td valign="top">
<div align="right">
<?php if ($u->error != '') {
echo '<font color="red"><b>' . $u->error . '</b></font>';
} ?>
<table border="0" cellpadding="0" cellspacing="0">
<tr align="right" valign="top">
<td>
<?php if ($re != '') {
echo '<font color="red"><b>' . $re . '</b></font>';
} ?>
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="ViewLocation"><?php
if (true == false) {
?>
<script><?php
require_once('modules_data/location/fight-club.database.php');
?>
var json = <?php echo json_encode($Response); ?>;
var tgo = <?php echo($tmGo * 10); ?>;
var tgol = <?php echo($tmGol * 10); ?>;
ViewLocation(json);
</script><?php
}else{
?>
<div style="position:relative; cursor: pointer; width: 500;" id="ione">
<img src="https://img.new-combats.com/i/images/300x225/club/navig.jpg"
id="img_ione" width="500" height="240" border="1"/>
<div style="position:absolute; left:184px; top:94px; width:120px; height:35px; z-index:90;"><img src="https://img.new-combats.com/i/images/300x225/map_bk.gif" width="120" height="35" title="" class="aFilter" /></div> <div style="position:absolute; left:241px; top:128px; width:16px; height:18px; z-index:90;">
<div style="position:absolute; left:66px; top:114px; width:56px; height:13px; z-index:90;"><img <? thisInfRm('2.180.0.240'); ?> onClick="location='main.php?loc=2.180.0.240';" src="https://img.new-combats.com/i/images/300x225/map_klub1.gif" width="56" height="13" class="aFilter" /></div> <img src="https://img.new-combats.com/i/images/300x225/fl1.gif"
<div style="position:absolute; left:216px; top:41px; width:58px; height:49px; z-index:90;"><img <? thisInfRm('2.180.0.259'); ?> onClick="location='main.php?loc=2.180.0.259';" src="https://img.new-combats.com/i/images/300x225/map_klub2.gif" width="58" height="49" class="aFilter" /></div> width="16" height="18"
<div style="position:absolute; left:312px; top:168px; width:123px; height:31px; z-index:90;"><img <? thisInfRm('2.180.0.229'); ?> onClick="location='main.php?loc=2.180.0.229';" src="https://img.new-combats.com/i/images/300x225/map_klub3.gif" width="123" height="31" title="" class="aFilter" /></div> title="Вы находитесь в '<?php echo $u->room['name']; ?>'"/>
<div style="position:absolute; left:59px; top:169px; width:123px; height:31px; z-index:90;"><img <? thisInfRm('2.180.0.231'); ?> onClick="location='main.php?loc=2.180.0.231';" src="https://img.new-combats.com/i/images/300x225/map_klub4.gif" width="123" height="31" class="aFilter" /></div> </div>
<div style="position:absolute; left:312px; top:48px; width:123px; height:30px; z-index:90;"><img <? thisInfRm('2.180.0.232'); ?> onClick="location='main.php?loc=2.180.0.232';" src="https://img.new-combats.com/i/images/300x225/map_klub5.gif" width="123" height="30" class="aFilter" /></div> <div style="position: absolute; left: 30px; top: 140px; width: 28px; height: 31px; z-index: 90;">
<div style="position:absolute; left:52px; top:47px; width:123px; height:30px; z-index:90;"><img <? thisInfRm('2.180.0.233'); ?> onClick="location='main.php?loc=2.180.0.233';" src="https://img.new-combats.com/i/images/300x225/map_klub6.gif" width="123" height="30" class="aFilter" /></div> <img onClick="alert('Проход через Зал воинов 1');"
<div style="position:absolute; left:196px; top:148px; width:103px; height:47px; z-index:90;"><img <? thisInfRm('2.180.0.234'); ?> onClick="location='main.php?loc=2.180.0.234';" src="https://img.new-combats.com/i/images/300x225/map_klub7.gif" width="103" height="47" class="aFilter" /></div> src="https://img.new-combats.com/i/images/300x225/zk_entrance.gif"
<div id="snow"></div> width="28" height="63" title=""/></div>
<? echo $goline; ?>
</div> <div style="position: absolute; left: 327px; top: 136px; width: 63px; height: 28px; z-index: 90;">
<?php } ?> <img onClick="alert('Проход через Зал воинов 2');"
</td> src="https://img.new-combats.com/city/zk_entrance2.gif"
</tr> width="63" height="28" title=""/></div>
</table>
<div style="display:none; height:0px " id="moveto"></div>
<div align="right" style="padding: 3px;"><small>&laquo;<? echo $c['title3']; ?>&raquo; приветствует Вас, <b><? echo $u->info['login']; ?></b>.<br /> <div style="position:absolute; left:184px; top:94px; width:120px; height:35px; z-index:90;">
<?php <img src="https://img.new-combats.com/i/images/300x225/map_bk.gif"
if($u->info['level']<6) width="120" height="35" title="" class="aFilter"/></div>
{ <div style="position:absolute; left:66px; top:114px; width:56px; height:13px; z-index:90;">
echo ' <img <?php thisInfRm('2.180.0.240'); ?>
onClick="location='main.php?loc=2.180.0.240';"
src="https://img.new-combats.com/i/images/300x225/map_klub1.gif"
width="56" height="13" class="aFilter"/></div>
<div style="position:absolute; left:216px; top:41px; width:58px; height:49px; z-index:90;">
<img <?php thisInfRm('2.180.0.259'); ?>
onClick="location='main.php?loc=2.180.0.259';"
src="https://img.new-combats.com/i/images/300x225/map_klub2.gif"
width="58" height="49" class="aFilter"/></div>
<div style="position:absolute; left:312px; top:168px; width:123px; height:31px; z-index:90;">
<img <?php thisInfRm('2.180.0.229'); ?>
onClick="location='main.php?loc=2.180.0.229';"
src="https://img.new-combats.com/i/images/300x225/map_klub3.gif"
width="123" height="31" title="" class="aFilter"/></div>
<div style="position:absolute; left:59px; top:169px; width:123px; height:31px; z-index:90;">
<img <?php thisInfRm('2.180.0.231'); ?>
onClick="location='main.php?loc=2.180.0.231';"
src="https://img.new-combats.com/i/images/300x225/map_klub4.gif"
width="123" height="31" class="aFilter"/></div>
<div style="position:absolute; left:312px; top:48px; width:123px; height:30px; z-index:90;">
<img <?php thisInfRm('2.180.0.232'); ?>
onClick="location='main.php?loc=2.180.0.232';"
src="https://img.new-combats.com/i/images/300x225/map_klub5.gif"
width="123" height="30" class="aFilter"/></div>
<div style="position:absolute; left:52px; top:47px; width:123px; height:30px; z-index:90;">
<img <?php thisInfRm('2.180.0.233'); ?>
onClick="location='main.php?loc=2.180.0.233';"
src="https://img.new-combats.com/i/images/300x225/map_klub6.gif"
width="123" height="30" class="aFilter"/></div>
<div style="position:absolute; left:196px; top:148px; width:103px; height:47px; z-index:90;">
<img <?php thisInfRm('2.180.0.234'); ?>
onClick="location='main.php?loc=2.180.0.234';"
src="https://img.new-combats.com/i/images/300x225/map_klub7.gif"
width="103" height="47" class="aFilter"/></div>
<div id="snow"></div>
<?php echo $goline; ?>
</div>
<?php } ?>
</td>
</tr>
</table>
<div style="display:none; height:0px " id="moveto"></div>
<div align="right" style="padding: 3px;">
<small>&laquo;<?php echo $c['title3']; ?>&raquo; приветствует Вас,
<b><?php echo $u->info['login']; ?></b>.<br/>
<?php
if ($u->info['level'] < 6) {
echo '
Вам все время кажется что за вами следят? Чудится, что случайный попутчик мечтает всадить вам топор в спину? При совершении очередной покупки в гос. магазине мучает ощущение, что вас обманули? Кажется, что симпатичная девушка напротив смотрит на вас как на пищу? Успокойтесь, это не паранойя. Это реалии Capital city. Города Тьмы. Вам все время кажется что за вами следят? Чудится, что случайный попутчик мечтает всадить вам топор в спину? При совершении очередной покупки в гос. магазине мучает ощущение, что вас обманули? Кажется, что симпатичная девушка напротив смотрит на вас как на пищу? Успокойтесь, это не паранойя. Это реалии Capital city. Города Тьмы.
'; ';
}else{ } else {
echo 'Возможно, вы ошиблись этажом - настоящие сражения проходят этажом выше.'; echo 'Возможно, вы ошиблись этажом - настоящие сражения проходят этажом выше.';
} ?> } ?>
</small></div></td> </small></div>
<td> </td>
<!-- <br /><span class="menutop"><nobr>Комната для новичков</nobr></span>--> <td></td>
</td> </tr>
</table>
<small>
<HR>
<?php $hgo = $u->testHome();
if (!isset($hgo['id'])) { ?><INPUT
onclick="location.href='main.php?homeworld=<?php echo $code; ?>';"class="btn"value="Возврат"
type="button"name="combats2"><?php }
unset($hgo); ?>
<INPUT id="forum" class="btn"
onclick="window.open('https://new-combats.com/forum/', 'forum', 'location=yes,menubar=yes,status=yes,resizable=yes,toolbar=yes,scrollbars=yes,scrollbars=yes')"
value="Форум" type="button" name="forum">
<INPUT onclick="location.href='main.php?clubmap=<?php echo $code; ?>';" class="btn"
value="Карта клуба" type="button" name="combats2">
<br/>
<strong>Внимание!</strong> Никогда и никому не говорите пароль от своего персонажа. Не вводите
пароль на других сайтах, типа "новый город", "лотерея", "там, где все дают на халяву". Пароль не
нужен ни паладинам, ни кланам, ни администрации, <U>только взломщикам</U> для кражи вашего
героя.<BR>
<em>Администрация.</em></small> <BR>
<?php echo $rowonmax; ?><BR>
</div>
</td>
</tr> </tr>
</table> </table>
<small> <?php
<HR> }
<? $hgo = $u->testHome(); if(!isset($hgo['id'])){ ?><INPUT onclick="location.href='main.php?homeworld=<? echo $code; ?>';" class="btn" value="Возврат" type="button" name="combats2"><? } unset($hgo); ?>
<INPUT id="forum" class="btn" onclick="window.open('https://new-combats.com/forum/', 'forum', 'location=yes,menubar=yes,status=yes,resizable=yes,toolbar=yes,scrollbars=yes,scrollbars=yes')" value="Форум" type="button" name="forum">
<INPUT onclick="location.href='main.php?clubmap=<? echo $code; ?>';" class="btn" value="Карта клуба" type="button" name="combats2">
<br />
<strong>Внимание!</strong> Никогда и никому не говорите пароль от своего персонажа. Не вводите пароль на других сайтах, типа "новый город", "лотерея", "там, где все дают на халяву". Пароль не нужен ни паладинам, ни кланам, ни администрации, <U>только взломщикам</U> для кражи вашего героя.<BR>
<em>Администрация.</em></small> <BR>
<? echo $rowonmax; ?><BR>
</div></td>
</tr>
</table>
<?php
}

View File

@ -1,146 +1,209 @@
<?php <?php
if(!defined('GAME'))die(); if (!defined('GAME')) {
die();
}
// dungeons/building.php // dungeons/building.php
// name:"Строительство портала"|resource:898x1000,891x500,877x250,900x400,899x400,890x200,876x100,889x100,1035x100 // name:"Строительство портала"|resource:898x1000,891x500,877x250,900x400,899x400,890x200,876x100,889x100,1035x100
if(isset($file) && $file[0]=='dungeons/building.php' /* && $u->info['admin'] > 0 */ ) { if (isset($file) && $file[0] == 'dungeons/building.php' /* && $u->info['admin'] > 0 */) {
$need_count = 0;
$actions = array();
$resource = array();
$action = explode('|',$file[1]);
foreach( $action as $value ) {
$temp = explode(':',$value);
$actions[$temp[0]]= $temp[1];
}
if( isset($actions['resource']) ){
$action = explode( ',',$actions['resource'] );
foreach( $action as $value ) {
$temp = explode( 'x', $value );
$resource[] = array(
'item' => (int)$temp[0],
'count' => (int)$temp[1]
);
$need_count = $need_count+(int)$temp[1];
}
}
$actions['resource'] = $resource;
unset($action, $temp, $value, $resource);
# Обьекты для строительства
if(isset($_GET['buildend'])) {
//identid
$obj = mysql_fetch_array(mysql_query('SELECT * FROM `dungeon_obj` WHERE `id` = "'.mysql_real_escape_string($actions['identid']).'" LIMIT 1'));
$txt = '';
if( !isset($obj['id']) ) {
$txt = 'Объект строительства был поврежден темной магией...';
}else{
if( $obj['x'] == $u->info['x'] && $obj['y'] == $u->info['y'] ) {
$txt = 'Объект уже был построен ранее! Вернитесь на клетку назад для использования объекта!';
}else{
mysql_query('UPDATE `dungeon_obj` SET `x` = "'.$u->info['x'].'", `y` = "'.$u->info['y'].'" WHERE `id` = "'.$obj['id'].'" LIMIT 1');
mysql_query('UPDATE `dungeon_obj` SET `x` = "'.$u->info['x'].'", `y` = "'.$u->info['y'].'" WHERE `dn` > 0 AND `name` = "'.$obj['name'].'" AND `img` = "'.$obj['img'].'" AND `action` = "'.$obj['action'].'" AND `x` = "'.$obj['x'].'" AND `y` = "'.$obj['y'].'"');
$txt = 'Строительство &quot;'.$obj['name'].'&quot; завершилось, вернитесь на клетку назад...';
$u->send('','','','','','Игрок &quot;<b>' . $u->info['login'] . '</b>&quot; завершил строительство объекта &quot;'.mysql_real_escape_string($actions['name']).'&quot;.',time(),6,0,0,0,1,0);
}
}
echo '<div align="left"><font color="red"><b>'.$txt.'</b></font></div>';
}
# пожертвование
if( isset($_POST['itemid'],$_POST['action']) ){
$help = mysql_fetch_assoc(mysql_query('SELECT COUNT(`id`) as count, item_id FROM `items_users` WHERE `item_id` = '.$_POST['itemid'].' AND `uid` = '.$u->info['id'].' AND (`delete` = "0" OR `delete` = "1000") AND `inOdet` = "0" AND `inShop` = "0" LIMIT 1'));
if($help){
$item = mysql_fetch_assoc(mysql_query('SELECT im.`name`, im.`img` FROM `items_main` as im WHERE im.`id` = '.$help['item_id'].' LIMIT 1'));
if( isset($item) && $item['name'] != '' ) {
foreach( $actions['resource'] as $key=>$val) {
if($_POST['itemid'] == $val['item']){
$current = mysql_fetch_assoc(mysql_query('SELECT SUM(b.`count`) as count, im.`name`, im.`img` FROM `items_main` as im LEFT JOIN `building` as `b` ON b.item_id = im.id WHERE b.`building` = "'.$actions['ident'].'" AND im.`id` = '.$val['item'].' LIMIT 1'));
if($current['count']==NULL) $current['count']=0; else $current['count']=(int)$current['count'];
if($current['count']+(int)$help['count'] <= $val['count']) {
# Если ваших ресурсов меньше чем требуется.
} else {
# Если ваших ресурсов больше чем требуется.
$help['count'] = +($val['count']-$current['count']);
}
if($help['count'] > 0) {
mysql_query('UPDATE `items_users` SET `delete` = "'.time().'" WHERE `item_id` = '.$help['item_id'].' AND `uid` = '.$u->info['id'].' AND (`delete` = "0" OR `delete` = "1000") AND `inOdet` = "0" AND `inShop` = "0" ORDER BY `delete` DESC LIMIT '.$help['count'].'');
mysql_query('INSERT INTO building (id, building, uid, clan_id, item_id, count) VALUES (NULL, "'.$actions['ident'].'", '.$u->info['id'].', '.$u->info['clan'].', '.$help['item_id'].', '.$help['count'] .')');
$d->error = 'Вы пожертвовали на строительство ['.$item['name'].'] в количестве '.$help['count'].'шт.';
}
}
}
#
# mysql_query('INSERT INTO `dungeon_actions` (`dn`,`time`,`x`,`y`,`uid`,`vars`,`vals`) VALUES ("'.$u->info['dnow'].'","'.time().'","'.$u->info['x'].'","'.$u->info['y'].'","'.$u->info['id'].'","building_resource","count_'.$help.'")');
#
#("'.$u->info['dnow'].'","'.time().'","'.$u->info['x'].'","'.$u->info['y'].'","'.$u->info['id'].'","building_resource","count_'.$help.'")');
}
}
}
unset($_POST,$help, $item);
$need_count = 0;
# отображение $actions = [];
$count = mysql_fetch_array(mysql_query('SELECT SUM(count) as count FROM `building` WHERE `building` = "'.$actions['ident'].'" LIMIT 1')); $resource = [];
if( isset($count[0]) and $count[0]!=NULL ) $count = $count[0]; else $count = 0; $action = explode('|', $file[1]);
$r = '<table width="520" style="border:1px solid gray;padding:4px 4px;" cellpadding="0" cellspacing="0"><tr> foreach ($action as $value) {
$temp = explode(':', $value);
$actions[$temp[0]] = $temp[1];
}
if (isset($actions['resource'])) {
$action = explode(',', $actions['resource']);
foreach ($action as $value) {
$temp = explode('x', $value);
$resource[] = [
'item' => (int)$temp[0],
'count' => (int)$temp[1],
];
$need_count = $need_count + (int)$temp[1];
}
}
$actions['resource'] = $resource;
unset($action, $temp, $value, $resource);
# Обьекты для строительства
if (isset($_GET['buildend'])) {
//identid
$obj = mysql_fetch_array(
mysql_query(
'SELECT * FROM `dungeon_obj` WHERE `id` = "' . mysql_real_escape_string(
$actions['identid']
) . '" LIMIT 1'
)
);
$txt = '';
if (!isset($obj['id'])) {
$txt = 'Объект строительства был поврежден темной магией...';
} else {
if ($obj['x'] == $u->info['x'] && $obj['y'] == $u->info['y']) {
$txt = 'Объект уже был построен ранее! Вернитесь на клетку назад для использования объекта!';
} else {
mysql_query(
'UPDATE `dungeon_obj` SET `x` = "' . $u->info['x'] . '", `y` = "' . $u->info['y'] . '" WHERE `id` = "' . $obj['id'] . '" LIMIT 1'
);
mysql_query(
'UPDATE `dungeon_obj` SET `x` = "' . $u->info['x'] . '", `y` = "' . $u->info['y'] . '" WHERE `dn` > 0 AND `name` = "' . $obj['name'] . '" AND `img` = "' . $obj['img'] . '" AND `action` = "' . $obj['action'] . '" AND `x` = "' . $obj['x'] . '" AND `y` = "' . $obj['y'] . '"'
);
$txt = 'Строительство &quot;' . $obj['name'] . '&quot; завершилось, вернитесь на клетку назад...';
$cmsg = new ChatMessage();
$cmsg->setText('Игрок &quot;<b>' . $u->info['login'] . '</b>&quot; завершил строительство объекта &quot;' . mysql_real_escape_string($actions['name']) . '&quot;.');
$cmsg->setType(6);
(new Chat())->sendMsg($cmsg);
}
}
echo '<div style="font-weight: bold; color: red">' . $txt . '</div>';
}
# пожертвование
if (isset($_POST['itemid'], $_POST['action'])) {
$help = mysql_fetch_assoc(
mysql_query(
'SELECT COUNT(`id`) as count, item_id FROM `items_users` WHERE `item_id` = ' . $_POST['itemid'] . ' AND `uid` = ' . $u->info['id'] . ' AND (`delete` = "0" OR `delete` = "1000") AND `inOdet` = "0" AND `inShop` = "0" LIMIT 1'
)
);
if ($help) {
$item = mysql_fetch_assoc(
mysql_query(
'SELECT im.`name`, im.`img` FROM `items_main` as im WHERE im.`id` = ' . $help['item_id'] . ' LIMIT 1'
)
);
if (isset($item) && $item['name'] != '') {
foreach ($actions['resource'] as $key => $val) {
if ($_POST['itemid'] == $val['item']) {
$current = mysql_fetch_assoc(
mysql_query(
'SELECT SUM(b.`count`) as count, im.`name`, im.`img` FROM `items_main` as im LEFT JOIN `building` as `b` ON b.item_id = im.id WHERE b.`building` = "' . $actions['ident'] . '" AND im.`id` = ' . $val['item'] . ' LIMIT 1'
)
);
if ($current['count'] == null) {
$current['count'] = 0;
} else {
$current['count'] = (int)$current['count'];
}
if ($current['count'] + (int)$help['count'] <= $val['count']) {
# Если ваших ресурсов меньше чем требуется.
} else {
# Если ваших ресурсов больше чем требуется.
$help['count'] = +($val['count'] - $current['count']);
}
if ($help['count'] > 0) {
mysql_query(
'UPDATE `items_users` SET `delete` = "' . time(
) . '" WHERE `item_id` = ' . $help['item_id'] . ' AND `uid` = ' . $u->info['id'] . ' AND (`delete` = "0" OR `delete` = "1000") AND `inOdet` = "0" AND `inShop` = "0" ORDER BY `delete` DESC LIMIT ' . $help['count'] . ''
);
mysql_query(
'INSERT INTO building (id, building, uid, clan_id, item_id, count) VALUES (NULL, "' . $actions['ident'] . '", ' . $u->info['id'] . ', ' . $u->info['clan'] . ', ' . $help['item_id'] . ', ' . $help['count'] . ')'
);
$d->error = 'Вы пожертвовали на строительство [' . $item['name'] . '] в количестве ' . $help['count'] . 'шт.';
}
}
}
#
# mysql_query('INSERT INTO `dungeon_actions` (`dn`,`time`,`x`,`y`,`uid`,`vars`,`vals`) VALUES ("'.$u->info['dnow'].'","'.time().'","'.$u->info['x'].'","'.$u->info['y'].'","'.$u->info['id'].'","building_resource","count_'.$help.'")');
#
#("'.$u->info['dnow'].'","'.time().'","'.$u->info['x'].'","'.$u->info['y'].'","'.$u->info['id'].'","building_resource","count_'.$help.'")');
}
}
}
unset($_POST, $help, $item);
# отображение
$count = mysql_fetch_array(
mysql_query('SELECT SUM(count) as count FROM `building` WHERE `building` = "' . $actions['ident'] . '" LIMIT 1')
);
if (isset($count[0]) and $count[0] != null) {
$count = $count[0];
} else {
$count = 0;
}
$r = '<table width="520" style="border:1px solid gray;padding:4px 4px;" cellpadding="0" cellspacing="0"><tr>
<td colspan="2" style="border:1px solid gray;padding:3px 6px;border-right:0px;"><strong>Прогресс строительства %</strong></td> <td colspan="2" style="border:1px solid gray;padding:3px 6px;border-right:0px;"><strong>Прогресс строительства %</strong></td>
<td align="right" style="border:1px solid gray;padding:3px 6px;border-left:0px;"><table style="display:inline-block;" border="0" cellspacing="0" cellpadding="0" height="10"><tr><td valign="middle" width="120" style="padding-top:12px"><div style="position:relative;"><div id="vhp-1234500000" title="Выполнение строительства" align="left" class="seehp" style="position:absolute; top:-10px; width:120px; height:10px; z-index:12;"> '.round($count/($need_count/100)).'/'.(100).'</div><div title="Выполнение строительства" class="hpborder" style="position:absolute; top:-10px; width:120px; height:9px; z-index:13;"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div class="hp_3 senohp" style="height:9px; width:120px; position:absolute; top:-10px; z-index:11;" id="lhp-1234500000"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div title="Выполнение строительства" class="hp_none" style="position:absolute; top:-10px; width:120px; height:10px; z-index:10;"><img src="https://img.new-combats.com/1x1.gif" height="10"></div></div></td></tr></table><br><script>top.startHpRegen("main",-1234500000,'.round($count/($need_count/100)).','.( 100 ).',0,0,0,0,0,0,1);</script>'; <td align="right" style="border:1px solid gray;padding:3px 6px;border-left:0px;"><table style="display:inline-block;" border="0" cellspacing="0" cellpadding="0" height="10"><tr><td valign="middle" width="120" style="padding-top:12px"><div style="position:relative;"><div id="vhp-1234500000" title="Выполнение строительства" align="left" class="seehp" style="position:absolute; top:-10px; width:120px; height:10px; z-index:12;"> ' . round(
$r .= '</td></tr>'; $count / ($need_count / 100)
# Текущее состояние строительства. ) . '/' . (100) . '</div><div title="Выполнение строительства" class="hpborder" style="position:absolute; top:-10px; width:120px; height:9px; z-index:13;"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div class="hp_3 senohp" style="height:9px; width:120px; position:absolute; top:-10px; z-index:11;" id="lhp-1234500000"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div title="Выполнение строительства" class="hp_none" style="position:absolute; top:-10px; width:120px; height:10px; z-index:10;"><img src="https://img.new-combats.com/1x1.gif" height="10"></div></div></td></tr></table><br><script>top.startHpRegen("main",-1234500000,' . round(
foreach( $actions['resource'] as $key=>$val) { $count / ($need_count / 100)
if($count==0){ ) . ',' . (100) . ',0,0,0,0,0,0,1);</script>';
$current = mysql_fetch_assoc(mysql_query('SELECT im.`name`, im.`img` FROM `items_main` as im WHERE im.`id` = '.$val['item'].' LIMIT 1')); $r .= '</td></tr>';
$current['count'] = 0; # Текущее состояние строительства.
} else { foreach ($actions['resource'] as $key => $val) {
$current = mysql_fetch_assoc(mysql_query('SELECT SUM(b.`count`) as count, im.`name`, im.`img` FROM `items_main` as im LEFT JOIN `building` as `b` ON b.item_id = im.id if ($count == 0) {
WHERE b.`building` = "'.$actions['ident'].'" AND im.`id` = '.$val['item'].' LIMIT 1')); $current = mysql_fetch_assoc(
} mysql_query(
if( isset($current) && $current['name'] != '' ) { 'SELECT im.`name`, im.`img` FROM `items_main` as im WHERE im.`id` = ' . $val['item'] . ' LIMIT 1'
$actions['resource'][$key]['current'] = (int)$current['count']; )
$actions['resource'][$key]['name'] = $current['name']; );
$actions['resource'][$key]['img'] = $current['img']; $current['count'] = 0;
} else { } else {
$actions['resource'][$key]['current'] = 0; $current = mysql_fetch_assoc(
$actions['resource'][$key]['name'] = "Неизвестный предмет"; mysql_query(
$actions['resource'][$key]['img'] = ""; 'SELECT SUM(b.`count`) as count, im.`name`, im.`img` FROM `items_main` as im LEFT JOIN `building` as `b` ON b.item_id = im.id
} WHERE b.`building` = "' . $actions['ident'] . '" AND im.`id` = ' . $val['item'] . ' LIMIT 1'
} )
);
unset($key,$val,$current); }
if (isset($current) && $current['name'] != '') {
foreach( $actions['resource'] as $row) { $actions['resource'][$key]['current'] = (int)$current['count'];
$current_uid = mysql_fetch_assoc(mysql_query('SELECT COUNT(`id`) as count FROM `items_users` WHERE `item_id` = '.$row['item'].' AND `uid` = '.$u->info['id'].' AND (`delete` = "0" OR `delete` = "1000") AND `inOdet` = "0" AND `inShop` = "0" LIMIT 1')); $actions['resource'][$key]['name'] = $current['name'];
if(isset($current_uid) && $current_uid['count'] == NULL) $current_uid['count'] = 0; // Сколько можем внести $actions['resource'][$key]['img'] = $current['img'];
} else {
$r .= '<tr><td style="padding:1px 2px 1px 6px;">['.$row['name'].']</td>'; $actions['resource'][$key]['current'] = 0;
if($row['current'] >= $row['count']){ $actions['resource'][$key]['name'] = "Неизвестный предмет";
$input = ''; $actions['resource'][$key]['img'] = "";
} else{ }
$input = '<form method="post" id="te'.$row['item'].'"><input style="min-width:24px; border:0px; font-weight:bold; cursor:pointer;cursor:hand; text-align:center;" type="hidden" name="itemid" value="'.$row['item'].'"> <input style="min-width:90px; border:0px; font-weight:bold; cursor:pointer;cursor:hand; text-align:left;" type="SUBMIT" name="action" title="У вас есть '.$current_uid['count'].'шт" value="Пожертвовать"></form>'; }
}
$r .= '<td style="padding:1px 3px 1px 3px; text-align:right;">'.$input.'</td><td width="125" style="padding:1px 6px 1px 2px; text-align:right;">';
$r .='<table style="display:inline-block;" border="0" cellspacing="0" cellpadding="0" height="10"><tr><td valign="middle" width="120" style="padding-top:12px"><div style="position:relative;"><div id="vhp-123450'.$row['item'].'" title="'.$row['name'].'" align="left" class="seehp" style="position:absolute; top:-10px; width:120px; height:10px; z-index:12;"> '.round($row['current']/($row['count']/100)).'/'.(100).'</div><div title="'.$row['name'].'" class="hpborder" style="position:absolute; top:-10px; width:120px; height:9px; z-index:13;"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div class="hp_3 senohp" style="height:9px; width:120px; position:absolute; top:-10px; z-index:11;" id="lhp-123450'.$row['item'].'"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div title="'.$row['name'].'" class="hp_none" style="position:absolute; top:-10px; width:120px; height:10px; z-index:10;"><img src="https://img.new-combats.com/1x1.gif" height="10"></div></div></td></tr></table><br><script>top.startHpRegen("main",-123450'.$row['item'].','.round($row['current']/($row['count']/100)).','.(100).',0,0,0,0,0,0,1);</script>';
$r .= '</td></tr>';
unset($input,$current_uid);
}
if( round($count/($need_count/100)) >= 100 ) {
$r .= '<tr><td style="padding:1px 3px 1px 3px; text-align:center;"><br><input style="margin-left:120px;" class="btnnew2" onclick="location.href=\'/main.php?buildend\';" value="Завершить строительство" type="button"></td></tr>';
}
$r .= '</table>';
unset($row);
unset($key, $val, $current);
/*
* <table width="480" style="border:1px solid gray;padding:4px 4px;" cellpadding="0" cellspacing="0"><tr> foreach ($actions['resource'] as $row) {
<td style="border:1px solid gray;padding:3px 6px;border-right:0px;"><strong>Прогресс строительства</strong></td> $current_uid = mysql_fetch_assoc(
<td align="right" style="border:1px solid gray;padding:3px 6px;border-left:0px;"> mysql_query(
*/ 'SELECT COUNT(`id`) as count FROM `items_users` WHERE `item_id` = ' . $row['item'] . ' AND `uid` = ' . $u->info['id'] . ' AND (`delete` = "0" OR `delete` = "1000") AND `inOdet` = "0" AND `inShop` = "0" LIMIT 1'
# Идет строительство "'.$actions['name'].'", но нам нехватает ресурсов, помоги добрый странник. )
$d->information = '<br/>'.$r; );
if (isset($current_uid) && $current_uid['count'] == null) {
$current_uid['count'] = 0;
} } // Сколько можем внести
$r .= '<tr><td style="padding:1px 2px 1px 6px;">[' . $row['name'] . ']</td>';
if ($row['current'] >= $row['count']) {
$input = '';
} else {
$input = '<form method="post" id="te' . $row['item'] . '"><input style="min-width:24px; border:0px; font-weight:bold; cursor:pointer;cursor:hand; text-align:center;" type="hidden" name="itemid" value="' . $row['item'] . '"> <input style="min-width:90px; border:0px; font-weight:bold; cursor:pointer;cursor:hand; text-align:left;" type="SUBMIT" name="action" title="У вас есть ' . $current_uid['count'] . 'шт" value="Пожертвовать"></form>';
}
$r .= '<td style="padding:1px 3px 1px 3px; text-align:right;">' . $input . '</td><td width="125" style="padding:1px 6px 1px 2px; text-align:right;">';
$r .= '<table style="display:inline-block;" border="0" cellspacing="0" cellpadding="0" height="10"><tr><td valign="middle" width="120" style="padding-top:12px"><div style="position:relative;"><div id="vhp-123450' . $row['item'] . '" title="' . $row['name'] . '" align="left" class="seehp" style="position:absolute; top:-10px; width:120px; height:10px; z-index:12;"> ' . round(
$row['current'] / ($row['count'] / 100)
) . '/' . (100) . '</div><div title="' . $row['name'] . '" class="hpborder" style="position:absolute; top:-10px; width:120px; height:9px; z-index:13;"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div class="hp_3 senohp" style="height:9px; width:120px; position:absolute; top:-10px; z-index:11;" id="lhp-123450' . $row['item'] . '"><img src="https://img.new-combats.com/1x1.gif" height="9" width="1"></div><div title="' . $row['name'] . '" class="hp_none" style="position:absolute; top:-10px; width:120px; height:10px; z-index:10;"><img src="https://img.new-combats.com/1x1.gif" height="10"></div></div></td></tr></table><br><script>top.startHpRegen("main",-123450' . $row['item'] . ',' . round(
$row['current'] / ($row['count'] / 100)
) . ',' . (100) . ',0,0,0,0,0,0,1);</script>';
$r .= '</td></tr>';
unset($input, $current_uid);
}
if (round($count / ($need_count / 100)) >= 100) {
$r .= '<tr><td style="padding:1px 3px 1px 3px; text-align:center;"><br><input style="margin-left:120px;" class="btnnew2" onclick="location.href=\'/main.php?buildend\';" value="Завершить строительство" type="button"></td></tr>';
}
$r .= '</table>';
unset($row);
/*
* <table width="480" style="border:1px solid gray;padding:4px 4px;" cellpadding="0" cellspacing="0"><tr>
<td style="border:1px solid gray;padding:3px 6px;border-right:0px;"><strong>Прогресс строительства</strong></td>
<td align="right" style="border:1px solid gray;padding:3px 6px;border-left:0px;">
*/
# Идет строительство "'.$actions['name'].'", но нам нехватает ресурсов, помоги добрый странник.
$d->information = '<br/>' . $r;
}

View File

@ -317,21 +317,14 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
} else { } else {
//Записываем данные //Записываем данные
$msg['time'] = time();
$msg['spam'] = 0; $msg['spam'] = 0;
$msg['type'] = 1; $msg['type'] = 1;
$msg['toChat'] = 0;
$msg['color'] = 'Black';
$msg['typeTime'] = 0;
$msg['sound'] = 0;
$msg['global'] = 0;
$msg['molch'] = 0; $msg['molch'] = 0;
$msg['login'] = $u->info['login'];
$msg['cancel'] = 0; $msg['cancel'] = 0;
$msg['delete'] = 0; $msg['delete'] = 0;
$msg['to'] = ''; $msg['to'] = '';
$msg['da'] = 0; $msg['da'] = 0;
$msg['color'] = $u->info['chatColor'];
//Нормируем типы сообщений //Нормируем типы сообщений
if (preg_match("/private\[(.*?)\]/", $_POST['msg'], $msg['to'])) { if (preg_match("/private\[(.*?)\]/", $_POST['msg'], $msg['to'])) {
@ -354,11 +347,8 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
$_POST['msg'] = str_replace('to [' . $msg['to'] . ']', ' ', $_POST['msg']); $_POST['msg'] = str_replace('to [' . $msg['to'] . ']', ' ', $_POST['msg']);
} }
if ($u->info['admin'] == 0) { //ТУТ SPAM if ($u->info['admin'] == 0) { //ТУТ SPAM
if ($msg['to'] != '' && !isset($admq['id'])) { if ($msg['to'] != '' && !isset($admq['id']) && $msg['type'] == 3) {
$admq = Db::getRow('select id, admin from users where login = ? and admin > 0', [$msg['to']]); $admq = Db::getRow('select id, admin from users where login = ? and admin > 0', [$msg['to']]);
if ($msg['type'] != 3) {
unset($admq);
}
} }
if (!isset($admq['id'])) { if (!isset($admq['id'])) {
$msg['fspam'] = $filter->spamFiltr(str_replace('точка', '.', str_replace('ру', 'ru', $_POST['msg']))); $msg['fspam'] = $filter->spamFiltr(str_replace('точка', '.', str_replace('ру', 'ru', $_POST['msg'])));
@ -507,25 +497,19 @@ if (isset($_POST['msg']) && str_replace(' ', '', $_POST['msg']) != '') {
$i++; $i++;
} }
//todo: внимательно перебрать логику, возможно есть ненужные\дефолтные поля.
$cmsg = new ChatMessage(); $cmsg = new ChatMessage();
$cmsg->setInvis($u->info['invis']); $cmsg->setInvis($u->info['invis']);
$cmsg->setDa($msg['da']); $cmsg->setDa($msg['da']);
$cmsg->setDelete($msg['delete']); $cmsg->setDelete($msg['delete']);
$cmsg->setMolch($msg['molch']); $cmsg->setMolch($msg['molch']);
$cmsg->setLogin($msg['login']); $cmsg->setLogin($u->info['login']);
$cmsg->setTo($msg['to']); $cmsg->setTo($msg['to']);
$cmsg->setCity($u->info['city']); $cmsg->setCity($u->info['city']);
$cmsg->setRoom($u->info['room']); $cmsg->setRoom($u->info['room']);
$cmsg->setTime($msg['time']);
$cmsg->setType($msg['type']); $cmsg->setType($msg['type']);
$cmsg->setSpam($msg['spam']); $cmsg->setSpam($msg['spam']);
$cmsg->setText($_POST['msg']); $cmsg->setText($_POST['msg']);
$cmsg->setToChat($msg['toChat']); $cmsg->setColor($u->info['chatColor']);
$cmsg->setColor($msg['color']);
$cmsg->setTypeTime($msg['typeTime']);
$cmsg->setSound($msg['sound']);
$cmsg->setGlobal($msg['global']);
$chat->sendMsg($cmsg); $chat->sendMsg($cmsg);
} }