Вызов логина персонажа по единому стандарту. #64
@ -8837,9 +8837,7 @@ class Battle
|
|||||||
mysql_query(
|
mysql_query(
|
||||||
'UPDATE `stats` SET `last_hp` = "0",`tactic1`="0",`tactic2`="0",`tactic3`="0",`tactic4`="0",`tactic5`="0",`tactic6`="0",`tactic7` = "' . ($this->users[$i]['tactic7']) . '" WHERE `id` = "' . $this->users[$i]['id'] . '" LIMIT 1'
|
'UPDATE `stats` SET `last_hp` = "0",`tactic1`="0",`tactic2`="0",`tactic3`="0",`tactic4`="0",`tactic5`="0",`tactic6`="0",`tactic7` = "' . ($this->users[$i]['tactic7']) . '" WHERE `id` = "' . $this->users[$i]['id'] . '" LIMIT 1'
|
||||||
);
|
);
|
||||||
$rs[$this->users[$i]['team']] = $rs[$this->users[$i]['team']] . $u->microLogin(
|
$rs[$this->users[$i]['team']] = $rs[$this->users[$i]['team']] . $u->getLogin($this->users[$i]['id']) . ', ';
|
||||||
$this->users[$i], 2
|
|
||||||
) . ', ';
|
|
||||||
}
|
}
|
||||||
$up .= '`uid` = "' . $pl['id'] . '" OR';
|
$up .= '`uid` = "' . $pl['id'] . '" OR';
|
||||||
//battle-user (статистика, начальная)
|
//battle-user (статистика, начальная)
|
||||||
|
@ -1756,7 +1756,7 @@ class Dungeon
|
|||||||
}
|
}
|
||||||
$ph = $stt['hpNow'] / $stt['hpAll'] * 100;
|
$ph = $stt['hpNow'] / $stt['hpAll'] * 100;
|
||||||
$r .= '<table border="0" cellspacing="0" cellpadding="0" height="20">
|
$r .= '<table border="0" cellspacing="0" cellpadding="0" height="20">
|
||||||
<tr><td valign="middle"> <font color="#990000">' . User::start()->microLogin($pl['id'], 1) . '</font> </td>
|
<tr><td valign="middle"> <font color="#990000">' . User::start()->getLogin($pl['id']) . '</font> </td>
|
||||||
<td valign="middle" width="120" ';
|
<td valign="middle" width="120" ';
|
||||||
if ($stt['mpAll'] < 1) {
|
if ($stt['mpAll'] < 1) {
|
||||||
$r .= 'style="padding-top:12px"';
|
$r .= 'style="padding-top:12px"';
|
||||||
|
@ -931,7 +931,7 @@ class FightRequest
|
|||||||
$teams = ArraySorter::groupBy($cb, 'team');
|
$teams = ArraySorter::groupBy($cb, 'team');
|
||||||
foreach ($teams as $teamId => $team) {
|
foreach ($teams as $teamId => $team) {
|
||||||
foreach ($team as $key => $player) {
|
foreach ($team as $key => $player) {
|
||||||
$players .= $this->u->microLogin($player['id']);
|
$players .= $this->u->getLogin($player['id']);
|
||||||
if ($key !== array_key_last($team)) {
|
if ($key !== array_key_last($team)) {
|
||||||
$players .= ', ';
|
$players .= ', ';
|
||||||
} else {
|
} else {
|
||||||
@ -1038,7 +1038,7 @@ class FightRequest
|
|||||||
$uids = Db::getColumn('select id from stats where zv = ?', [$pl['id']]);
|
$uids = Db::getColumn('select id from stats where zv = ?', [$pl['id']]);
|
||||||
$cols = count($uids);
|
$cols = count($uids);
|
||||||
foreach ($uids as $uid) {
|
foreach ($uids as $uid) {
|
||||||
$tm .= $this->u->microLogin($uid) . ', ';
|
$tm .= $this->u->getLogin($uid) . ', ';
|
||||||
}
|
}
|
||||||
|
|
||||||
$tm = rtrim($tm, ', ');
|
$tm = rtrim($tm, ', ');
|
||||||
@ -1049,7 +1049,7 @@ class FightRequest
|
|||||||
$unvs = '';
|
$unvs = '';
|
||||||
if ($pl['invise'] == 1) {
|
if ($pl['invise'] == 1) {
|
||||||
$userslist = $this->u->isModerator() ? $tm : '';
|
$userslist = $this->u->isModerator() ? $tm : '';
|
||||||
$tm = '<span style="color:maroon">' . $this->u->microLogin($pl['creator']) . '</span>' .
|
$tm = '<span style="color:maroon">' . $this->u->getLogin($pl['creator']) . '</span>' .
|
||||||
$userslist . ' - <i>невидимый</i>';
|
$userslist . ' - <i>невидимый</i>';
|
||||||
$unvs = ' Участников: ' . $cols . ' чел. ';
|
$unvs = ' Участников: ' . $cols . ' чел. ';
|
||||||
$n1tv .= ' <img src="' . Config::img() . '/i/fighttypehidden0.gif" title="Невидимый">';
|
$n1tv .= ' <img src="' . Config::img() . '/i/fighttypehidden0.gif" title="Невидимый">';
|
||||||
@ -1143,9 +1143,9 @@ class FightRequest
|
|||||||
$tmc = [];
|
$tmc = [];
|
||||||
$users = Db::getRows('select team, id from stats where zv = ?', [$pl['id']]);
|
$users = Db::getRows('select team, id from stats where zv = ?', [$pl['id']]);
|
||||||
foreach ($users as $user) {
|
foreach ($users as $user) {
|
||||||
${'tm' . $user['team']} .= $this->u->microLogin($user['id']) . ', ';
|
${'tm' . $user['team']} .= $this->u->getLogin($user['id']) . ', ';
|
||||||
$tmc[$user['team']]++;
|
$tmc[$user['team']]++;
|
||||||
$teams[$user['team']][] = $this->u->microLogin($user['id']);
|
$teams[$user['team']][] = $this->u->getLogin($user['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($teams as $id => $members) {
|
foreach ($teams as $id => $members) {
|
||||||
|
@ -1319,7 +1319,7 @@ class Magic
|
|||||||
} elseif ($u->info['dnow'] != $usr['dnow']) {
|
} elseif ($u->info['dnow'] != $usr['dnow']) {
|
||||||
$u->error = 'Персонаж находится в другой комнате [пещера]';
|
$u->error = 'Персонаж находится в другой комнате [пещера]';
|
||||||
} elseif ($usr['room'] == 217 || $usr['room'] == 218 || $usr['room'] == 219) {
|
} elseif ($usr['room'] == 217 || $usr['room'] == 218 || $usr['room'] == 219) {
|
||||||
$u->error = 'Персонаж ' . $u->microLogin($usr['id'], 1) . ' находится в Общежитии!';
|
$u->error = 'Персонаж ' . $u->getLogin($usr['id']) . ' находится в Общежитии!';
|
||||||
} elseif ($usr['inTurnir'] != 0 && ($u->info['inTurnir'] != $usr['inTurnir'])) {
|
} elseif ($usr['inTurnir'] != 0 && ($u->info['inTurnir'] != $usr['inTurnir'])) {
|
||||||
$u->error = 'Участвует в турнире Башни смерти...';
|
$u->error = 'Участвует в турнире Башни смерти...';
|
||||||
} elseif ($usr['id'] == $u->info['id'] && isset($st['useOnlyUser'])) {
|
} elseif ($usr['id'] == $u->info['id'] && isset($st['useOnlyUser'])) {
|
||||||
|
@ -5,17 +5,17 @@ if (!defined('GAME')) {
|
|||||||
if ($u->info['login'] == $usr['login']) {
|
if ($u->info['login'] == $usr['login']) {
|
||||||
$u->error = 'Нельзя использовать на себя!';
|
$u->error = 'Нельзя использовать на себя!';
|
||||||
} elseif ($usr['room'] == 217 || $usr['room'] == 218 || $usr['room'] == 219) {
|
} elseif ($usr['room'] == 217 || $usr['room'] == 218 || $usr['room'] == 219) {
|
||||||
$u->error = 'Персонаж ' . $u->microLogin($usr['id'], 1) . ' находится в Общежитии!';
|
$u->error = 'Персонаж ' . $u->getLogin($usr['id']) . ' находится в Общежитии!';
|
||||||
} elseif ($usr['dnow'] > 0) {
|
} elseif ($usr['dnow'] > 0) {
|
||||||
$u->error = 'Персонаж ' . $u->microLogin($usr['id'], 1) . ' находится в Подземелье';
|
$u->error = 'Персонаж ' . $u->getLogin($usr['id']) . ' находится в Подземелье';
|
||||||
} elseif ($usr['real'] == 1) {
|
} elseif ($usr['real'] == 1) {
|
||||||
$u->error = 'Перемещать можно только реальных игроков!';
|
$u->error = 'Перемещать можно только реальных игроков!';
|
||||||
} elseif ($usr['bot'] > 0) {
|
} elseif ($usr['bot'] > 0) {
|
||||||
$u->error = 'Вы не можете поймать бота ;)';
|
$u->error = 'Вы не можете поймать бота ;)';
|
||||||
} elseif ($usr['battle'] > 0) {
|
} elseif ($usr['battle'] > 0) {
|
||||||
$u->error = 'Персонаж ' . $u->microLogin($usr['id'], 1) . ' находится в поединке';
|
$u->error = 'Персонаж ' . $u->getLogin($usr['id']) . ' находится в поединке';
|
||||||
} elseif ($usr['room'] == 274) {
|
} elseif ($usr['room'] == 274) {
|
||||||
$u->error = 'Персонаж ' . $u->microLogin($usr['id'], 1) . ' находится в Заточении!';
|
$u->error = 'Персонаж ' . $u->getLogin($usr['id']) . ' находится в Заточении!';
|
||||||
} elseif ($usr['online'] < time() - 520) {
|
} elseif ($usr['online'] < time() - 520) {
|
||||||
$u->error = 'Персонаж не в сети';
|
$u->error = 'Персонаж не в сети';
|
||||||
} else {
|
} else {
|
||||||
|
@ -1951,60 +1951,33 @@ class User
|
|||||||
return $plid;
|
return $plid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Возврат имени персонажа со всеми регалиями
|
||||||
public function microLogin(int $id, int $t = 1, int $nnz = 1): string
|
* @param int|null $uid id персонажа. Если пусто, возвращается имя персонажа активного игрока.
|
||||||
{
|
* @return string
|
||||||
if ($t !== 1) {
|
*/
|
||||||
$inf['id'] = $id;
|
public function getLogin(?int $uid = null):string {
|
||||||
} else {
|
if (is_null($uid)) {
|
||||||
$inf = Db::getRow(
|
$uid = $this->info['id'];
|
||||||
'select
|
}
|
||||||
users.id,
|
[$align, $login, $level, $clanName] = Db::getRow(
|
||||||
invis,
|
'select
|
||||||
users.align,
|
users.align,
|
||||||
align2,
|
|
||||||
clan,
|
|
||||||
cityreg,
|
|
||||||
login,
|
login,
|
||||||
users.level,
|
users.level,
|
||||||
c.name_mini
|
c.name_mini
|
||||||
from users left join clan as c on c.id = users.clan
|
from users left join clan as c on c.id = users.clan
|
||||||
where users.id = ?',
|
where users.id = ?',
|
||||||
[$id]
|
[$uid]
|
||||||
);
|
);
|
||||||
}
|
$imgBase = Config::img() . DIRECTORY_SEPARATOR . 'i';
|
||||||
|
|
||||||
if (
|
$alignStr = empty($align) ? '' : "<img src='$imgBase/align/align$align.gif' alt=''>";
|
||||||
isset($inf['id']) &&
|
$clanStr = empty($clanName) ? '' : "<img src='$imgBase/clan/$clanName.gif' alt='$clanName'>";
|
||||||
(
|
$spacedLogin = str_replace(' ', '%20', $login);
|
||||||
($inf['invis'] < time() && $inf['invis'] !== 1) ||
|
$loginLink = "<a href='/inf.php?login=$spacedLogin' target='_blank'><img src='img/inf.gif' title='Инф. о $login' alt='Инф. о $login'></a>";
|
||||||
($this->info['id'] == $inf['id'] && $nnz === 1)
|
return "$alignStr$clanStr<strong>$login</strong> [$level]$loginLink";
|
||||||
)
|
|
||||||
) {
|
|
||||||
$r = $this->microLogin2($inf);
|
|
||||||
} else {
|
|
||||||
$r = '<strong><i>Невидимка</i></strong> [??]';
|
|
||||||
}
|
|
||||||
return $r;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function microLogin2(array $userInfo): string
|
|
||||||
{
|
|
||||||
$result = '';
|
|
||||||
if ($userInfo['align'] > 0) {
|
|
||||||
$result .= '<img src=' . Config::img() . '/i/align/align' . $userInfo['align'] . '.gif>';
|
|
||||||
}
|
|
||||||
if ($userInfo['clan'] > 0) {
|
|
||||||
$clanName = Db::getValue('select name_mini from clan where id = ?', [$userInfo['clan']]);
|
|
||||||
$result .= '<img src=' . Config::img() . '/i/clan/' . $clanName . '.gif>';
|
|
||||||
}
|
|
||||||
$result .= '<strong>' . $userInfo['login'] . '</strong>[' . $userInfo['level'] . ']';
|
|
||||||
$result .= '<a target=_blank href=/info/' . $userInfo['id'] . ' ><img src=' . Config::img() . '/i/inf_capitalcity.gif alt=""></a>';
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Выводим вещи котоыре нужно отремонтировать
|
|
||||||
|
|
||||||
public function addNewbot($id, $botDate, $clon, $logins_bot = null, $luser = null, $round = null)
|
public function addNewbot($id, $botDate, $clon, $logins_bot = null, $luser = null, $round = null)
|
||||||
{
|
{
|
||||||
if ($clon != null) {
|
if ($clon != null) {
|
||||||
|
@ -544,7 +544,7 @@ class InfoBox
|
|||||||
if ($pb != '') {
|
if ($pb != '') {
|
||||||
$pb = '<div align="center" style="width:246px;"><!-- blocked -->' . $pb . '</div>';
|
$pb = '<div align="center" style="width:246px;"><!-- blocked -->' . $pb . '</div>';
|
||||||
}
|
}
|
||||||
$rt[0] .= '<div id="lgnthm" style="width:246px; padding:0 3px 0 3px;" align="center">' . $this->user->microLogin2($u) . '</div>' . $pb . '
|
$rt[0] .= '<div id="lgnthm" style="width:246px; padding:0 3px 0 3px;" align="center">' . $this->user->getLogin($u['id']) . '</div>' . $pb . '
|
||||||
<div class="personag" style="width:240px; background-color:#CCC; padding:3px; margin-right:11px; border-bottom:1px solid #666666; border-right:1px solid #666666; border-left:1px solid #FFFFFF; border-top:1px solid #FFFFFF;">
|
<div class="personag" style="width:240px; background-color:#CCC; padding:3px; margin-right:11px; border-bottom:1px solid #666666; border-right:1px solid #666666; border-left:1px solid #FFFFFF; border-top:1px solid #FFFFFF;">
|
||||||
<table width="240" border="0" cellspacing="0" cellpadding="0">
|
<table width="240" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -112,7 +112,7 @@ class Stats
|
|||||||
|
|
||||||
return (object)[
|
return (object)[
|
||||||
'uid' => $u->info['id'],
|
'uid' => $u->info['id'],
|
||||||
'login' => $u->microLogin($u->info['id']),
|
'login' => $u->getLogin(),
|
||||||
'hpbarwidth' => $ph,
|
'hpbarwidth' => $ph,
|
||||||
'mpbarwidth' => $pm,
|
'mpbarwidth' => $pm,
|
||||||
'hpbartext' => ' ' . $hpNow . '/' . $hpAll,
|
'hpbartext' => ' ' . $hpNow . '/' . $hpAll,
|
||||||
|
@ -13,7 +13,7 @@ if( isset($s[1]) && $s[1] == '101/i9' ) {
|
|||||||
if( !isset($vad['test']['id']) ) {
|
if( !isset($vad['test']['id']) ) {
|
||||||
$vad['go'] = true;
|
$vad['go'] = true;
|
||||||
}else{
|
}else{
|
||||||
$r = 'В сундуке была ловушка, её активировал персонаж '.$u->microLogin($vad['test']['uid'],1);
|
$r = 'В сундуке была ловушка, её активировал персонаж '.$u->getLogin($vad['test']['uid']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if( $vad['go'] == true ) {
|
if( $vad['go'] == true ) {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
if(!defined('GAME'))
|
if(!defined('GAME'))
|
||||||
{
|
{
|
||||||
die();
|
//die();
|
||||||
}
|
}
|
||||||
|
|
||||||
$stl = 15; //кол-во стилей клеток
|
$stl = 15; //кол-во стилей клеток
|
||||||
|
@ -26,7 +26,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
$b2 = $pl['money2'] + $b0['b'];
|
$b2 = $pl['money2'] + $b0['b'];
|
||||||
if ($b1 < 1000) {
|
if ($b1 < 1000) {
|
||||||
$html .= '<font color="red"><b>';
|
$html .= '<font color="red"><b>';
|
||||||
$html .= $i . '. ' . $u->microLogin($pl['id'], 1) . ' ( ' . $b1 . ' кр. / ' . $b2 . ' екр. )<hr>';
|
$html .= $i . '. ' . $u->getLogin($pl['id']) . ' ( ' . $b1 . ' кр. / ' . $b2 . ' екр. )<hr>';
|
||||||
$html .= '</b></font>';
|
$html .= '</b></font>';
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
@ -12,5 +12,5 @@ if (!$u->info['admin']) {
|
|||||||
}
|
}
|
||||||
$sp = mysql_query('SELECT * FROM `mults`');
|
$sp = mysql_query('SELECT * FROM `mults`');
|
||||||
while ($pl = mysql_fetch_array($sp)) {
|
while ($pl = mysql_fetch_array($sp)) {
|
||||||
echo '' . $u->microLogin($pl['uid'], 1) . ' пересечение с ' . $u->microLogin($pl['uid2'], 1) . ' <br>';
|
echo $u->getLogin($pl['uid']) . ' пересечение с ' . $u->getLogin($pl['uid2']) . ' <br>';
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
//
|
//
|
||||||
$r1 .= '<tr height="20">
|
$r1 .= '<tr height="20">
|
||||||
<td>' . $i . '</td>
|
<td>' . $i . '</td>
|
||||||
<td>' . $u->microLogin($pl['uid'], 1) . '</td>
|
<td>' . $u->getLogin($pl['uid']) . '</td>
|
||||||
<td>' . $pl2['voln'] . '</td>
|
<td>' . $pl2['voln'] . '</td>
|
||||||
<td>' . $ret . '</td>
|
<td>' . $ret . '</td>
|
||||||
<td>»»</td>
|
<td>»»</td>
|
||||||
@ -51,7 +51,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
if (date('d.m.Y') == date('d.m.Y', $pl2['time'])) {
|
if (date('d.m.Y') == date('d.m.Y', $pl2['time'])) {
|
||||||
$r2 .= '<tr height="20">
|
$r2 .= '<tr height="20">
|
||||||
<td>' . $j . '</td>
|
<td>' . $j . '</td>
|
||||||
<td>' . $u->microLogin($pl['uid'], 1) . '</td>
|
<td>' . $u->getLogin($pl['uid']) . '</td>
|
||||||
<td>' . $pl2['voln'] . '</td>
|
<td>' . $pl2['voln'] . '</td>
|
||||||
<td>' . $ret . '</td>
|
<td>' . $ret . '</td>
|
||||||
<td>»»</td>
|
<td>»»</td>
|
||||||
|
2
ekr.php
2
ekr.php
@ -733,7 +733,7 @@ if (isset($_POST['do']) && $_POST['do'] == 'newShadow') {
|
|||||||
<img alt="freekassa" src="image/free.png" width="300" height="110">
|
<img alt="freekassa" src="image/free.png" width="300" height="110">
|
||||||
<?php if (!empty($u->info['id'])): ?>
|
<?php if (!empty($u->info['id'])): ?>
|
||||||
<div style="padding:10px; border-bottom:1px solid white; text-align: center;">
|
<div style="padding:10px; border-bottom:1px solid white; text-align: center;">
|
||||||
Персонаж: <?= $u->microLogin($u->info['id'], 1) ?>
|
Персонаж: <?= $u->getLogin() ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if (!empty($u->error)): ?>
|
<?php if (!empty($u->error)): ?>
|
||||||
|
@ -561,9 +561,7 @@ function MM_jumpMenu(targ, selObj, restore) { //v3.0
|
|||||||
if (!$f->user) {
|
if (!$f->user) {
|
||||||
echo 'Вы не авторизованы<br><a href="https://' . $c['host'] . '/">Войти на персонажа</a>';
|
echo 'Вы не авторизованы<br><a href="https://' . $c['host'] . '/">Войти на персонажа</a>';
|
||||||
} else {
|
} else {
|
||||||
echo 'Вы вошли как: <br>' . $u->microLogin(
|
echo 'Вы вошли как: <br>' . $u->getLogin() . '<br><br>';
|
||||||
$u->info['id'], 1
|
|
||||||
) . '<br><br>';
|
|
||||||
} ?>
|
} ?>
|
||||||
<?php
|
<?php
|
||||||
if (($f->user['align'] > 1 && $f->user['align'] < 2) || ($f->user['align'] > 3 && $f->user['align'] < 4) || $f->user['admin'] > 0) {
|
if (($f->user['align'] > 1 && $f->user['align'] < 2) || ($f->user['align'] > 3 && $f->user['align'] < 4) || $f->user['admin'] > 0) {
|
||||||
@ -677,9 +675,7 @@ function MM_jumpMenu(targ, selObj, restore) { //v3.0
|
|||||||
if ($f->user == false) {
|
if ($f->user == false) {
|
||||||
echo 'Вы не авторизованы<br><a href="https://' . $c['host'] . '/">Войти на персонажа</a>';
|
echo 'Вы не авторизованы<br><a href="https://' . $c['host'] . '/">Войти на персонажа</a>';
|
||||||
} else {
|
} else {
|
||||||
echo 'Вы вошли как: <br>' . $u->microLogin(
|
echo 'Вы вошли как: <br>' . $u->getLogin() . '<br><br>';
|
||||||
$u->info['id'], 1
|
|
||||||
) . '<br><br>';
|
|
||||||
} ?>
|
} ?>
|
||||||
<?php
|
<?php
|
||||||
if (($f->user['align'] > 1 && $f->user['align'] < 2) || ($f->user['align'] > 3 && $f->user['align'] < 4) || $f->user['admin'] > 0) {
|
if (($f->user['align'] > 1 && $f->user['align'] < 2) || ($f->user['align'] > 3 && $f->user['align'] < 4) || $f->user['admin'] > 0) {
|
||||||
|
@ -24,7 +24,7 @@ $u = User::start();
|
|||||||
</head>
|
</head>
|
||||||
<body style="padding-top:0px; margin-top:7px; height:100%; background-color:#dedede;">
|
<body style="padding-top:0px; margin-top:7px; height:100%; background-color:#dedede;">
|
||||||
<script type="text/javascript" src="js/jquery.js"></script>
|
<script type="text/javascript" src="js/jquery.js"></script>
|
||||||
<center><strong>Просматривает персонаж: </strong><?= $u->microLogin($u->info['id'], 1) ?></center>
|
<center><strong>Просматривает персонаж: </strong><?= $u->getLogin() ?></center>
|
||||||
<hr>
|
<hr>
|
||||||
<INPUT style="float:right" class="btn btn-success" TYPE=button value="Обновить" style='width: 100px'
|
<INPUT style="float:right" class="btn btn-success" TYPE=button value="Обновить" style='width: 100px'
|
||||||
onClick="location.href='monitoring'"></div>
|
onClick="location.href='monitoring'"></div>
|
||||||
@ -41,7 +41,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
//
|
//
|
||||||
$spu = mysql_query('SELECT `id` FROM `stats` WHERE `zv` = "' . $pl['id'] . '"');
|
$spu = mysql_query('SELECT `id` FROM `stats` WHERE `zv` = "' . $pl['id'] . '"');
|
||||||
while ($plu = mysql_fetch_array($spu)) {
|
while ($plu = mysql_fetch_array($spu)) {
|
||||||
$users .= $u->microLogin($plu['id'], 1) . ',';
|
$users .= $u->getLogin($plu['id']) . ',';
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
if ($users == '') {
|
if ($users == '') {
|
||||||
@ -93,7 +93,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
if (!isset($usersa[$plu['team']])) {
|
if (!isset($usersa[$plu['team']])) {
|
||||||
$userst[] = $plu['team'];
|
$userst[] = $plu['team'];
|
||||||
}
|
}
|
||||||
$usersa[$plu['team']] .= $u->microLogin($plu['id'], 1) . ',';
|
$usersa[$plu['team']] .= $u->getLogin($plu['id']) . ',';
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
if (count($usersa) > 0) {
|
if (count($usersa) > 0) {
|
||||||
@ -161,7 +161,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
$users = '';
|
$users = '';
|
||||||
$spu = mysql_query('SELECT `id` FROM `users` WHERE `inTurnir` = "' . $pl['id'] . '"');
|
$spu = mysql_query('SELECT `id` FROM `users` WHERE `inTurnir` = "' . $pl['id'] . '"');
|
||||||
while ($plu = mysql_fetch_array($spu)) {
|
while ($plu = mysql_fetch_array($spu)) {
|
||||||
$users .= $u->microLogin($plu['id'], 1) . ',';
|
$users .= $u->getLogin($plu['id']) . ',';
|
||||||
}
|
}
|
||||||
$users = rtrim($users, ',');
|
$users = rtrim($users, ',');
|
||||||
$html .= ' <span title="[' . $pl['status'] . ']">Турнир Башни Смерти уже идет.</span>';
|
$html .= ' <span title="[' . $pl['status'] . ']">Турнир Башни Смерти уже идет.</span>';
|
||||||
|
8
inf.php
8
inf.php
@ -392,7 +392,7 @@ if (isset($uer)) {
|
|||||||
Db::sql('update users set login = ? where id = ?', ['DELETE', $pl['id']]);
|
Db::sql('update users set login = ? where id = ?', ['DELETE', $pl['id']]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$nolog .= '<div>' . $u->microLogin($pl['id'], 1);
|
$nolog .= '<div>' . $u->getLogin($pl['id']);
|
||||||
if ($nodell['inUser'] != $pl['id'] && $pl['id'] != $nodell['id']) {
|
if ($nodell['inUser'] != $pl['id'] && $pl['id'] != $nodell['id']) {
|
||||||
$nolog .= ' (персонажа можно <a href="?' . $inf['id'] . '&del_copy=' . $pl['id'] . '">удалить</a>)';
|
$nolog .= ' (персонажа можно <a href="?' . $inf['id'] . '&del_copy=' . $pl['id'] . '">удалить</a>)';
|
||||||
}
|
}
|
||||||
@ -1004,7 +1004,7 @@ if (isset($uer)) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$m[] = $u->microLogin($usr, 1, 0);
|
$m[] = $u->getLogin($usr);
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<div style="color:#828282; margin-top: 20px;">За игроком замечены следующие темные делишки:<br><small><span class=dsc>';
|
echo '<div style="color:#828282; margin-top: 20px;">За игроком замечены следующие темные делишки:<br><small><span class=dsc>';
|
||||||
@ -1022,7 +1022,7 @@ if (isset($uer)) {
|
|||||||
//Информация для паладинов\тарманов\ангелов
|
//Информация для паладинов\тарманов\ангелов
|
||||||
|
|
||||||
if ((int)$inf['host_reg'] >= 1) {
|
if ((int)$inf['host_reg'] >= 1) {
|
||||||
$inf['ref'] = $u->microLogin((int)$inf['host_reg']);
|
$inf['ref'] = $u->getLogin((int)$inf['host_reg']);
|
||||||
} else {
|
} else {
|
||||||
$inf['ref'] = '--';
|
$inf['ref'] = '--';
|
||||||
}
|
}
|
||||||
@ -1054,7 +1054,7 @@ if (isset($uer)) {
|
|||||||
$refusers[] = date('Дата регистрации: d.m.Y H:i', $refuser['timereg']) .
|
$refusers[] = date('Дата регистрации: d.m.Y H:i', $refuser['timereg']) .
|
||||||
DIRECTORY_SEPARATOR .
|
DIRECTORY_SEPARATOR .
|
||||||
date('Был тут: d.m.Y H:i ', $refuser['online']) .
|
date('Был тут: d.m.Y H:i ', $refuser['online']) .
|
||||||
$u->microLogin($inf['id']) .
|
$u->getLogin($inf['id']) .
|
||||||
"<small>({$refuser['ip']}, {$refuser['ipreg']})</small>";
|
"<small>({$refuser['ip']}, {$refuser['ipreg']})</small>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ if (isset($ba['id'])) {
|
|||||||
$uba = Db::getRow('select * from users where login = ? and banned = 0', [$_POST['buy_ekr']]);
|
$uba = Db::getRow('select * from users where login = ? and banned = 0', [$_POST['buy_ekr']]);
|
||||||
$uba['uid'] = $uba['id'];
|
$uba['uid'] = $uba['id'];
|
||||||
if (isset($uba['id'])) {
|
if (isset($uba['id'])) {
|
||||||
echo 'Покупатель: ' . $u->microLogin($uba['uid']) . '<br>';
|
echo 'Покупатель: ' . $u->getLogin($uba['uid']) . '<br>';
|
||||||
} else {
|
} else {
|
||||||
echo '<span style="color: red;">Персонаж заблокирован, либо не найден.</span><hr>';
|
echo '<span style="color: red;">Персонаж заблокирован, либо не найден.</span><hr>';
|
||||||
unset($_POST['buy_ekr']);
|
unset($_POST['buy_ekr']);
|
||||||
@ -222,7 +222,7 @@ if (isset($ba['id'])) {
|
|||||||
(new Chat())->sendMsg($cmsg);
|
(new Chat())->sendMsg($cmsg);
|
||||||
|
|
||||||
$text_msg = 'Алхимик <b>' . $u->info['login'] . '</b> совершил продажу <b>' .
|
$text_msg = 'Алхимик <b>' . $u->info['login'] . '</b> совершил продажу <b>' .
|
||||||
$_POST['buy4ekr'] . '</b> ЕКР. (скидка ' . $ba['procent'] . '% , задолжность ' . $ba['USD'] . '$). Покупатель: ' . $u->microLogin($uba['uid'], 1) . '.</b>.';
|
$_POST['buy4ekr'] . '</b> ЕКР. (скидка ' . $ba['procent'] . '% , задолжность ' . $ba['USD'] . '$). Покупатель: ' . $u->getLogin($uba['uid']) . '.</b>.';
|
||||||
|
|
||||||
$balance = Db::getValue('select sum(money) from balance_money where cancel = 0');
|
$balance = Db::getValue('select sum(money) from balance_money where cancel = 0');
|
||||||
$balance += $money;
|
$balance += $money;
|
||||||
@ -327,19 +327,17 @@ echo '<br><h2>Список реальщиков:</h2><br>';
|
|||||||
$sp = Db::getRows('select * from pay_operation where good > 0 group by uid');
|
$sp = Db::getRows('select * from pay_operation where good > 0 group by uid');
|
||||||
foreach ($sp as $pl) {
|
foreach ($sp as $pl) {
|
||||||
$online = Db::getValue('select online from users where id = ?', [$pl['uid']]);
|
$online = Db::getValue('select online from users where id = ?', [$pl['uid']]);
|
||||||
$lg = $u->microLogin($pl['uid'], 1);
|
$lg = $u->getLogin($pl['uid']);
|
||||||
|
|
||||||
if (!stristr($u->microLogin($pl['uid']), 'Невидимка')) {
|
if ($online > time() - 240) {
|
||||||
if ($online > time() - 240) {
|
$lg = '<span style="color: green;">' . $lg . '</span>';
|
||||||
$lg = '<span style="color: green;">' . $lg . '</span>';
|
} else {
|
||||||
} else {
|
$lg .= ' (был тут ' . date('d.m.Y H:i', $online) . ')';
|
||||||
$lg .= ' (был тут ' . date('d.m.Y H:i', $online) . ')';
|
}
|
||||||
}
|
if ($u->info['admin'] > 0) {
|
||||||
if ($u->info['admin'] > 0) {
|
$sum = Db::getValue('select sum(ekr) from pay_operation where good > 0 and uid = ?', [$pl['uid']]);
|
||||||
$sum = Db::getValue('select sum(ekr) from pay_operation where good > 0 and uid = ?', [$pl['uid']]);
|
echo $lg . ' - ' . $sum . ' екр.<br>';
|
||||||
echo $lg . ' - ' . $sum . ' екр.<br>';
|
} else {
|
||||||
} else {
|
echo $lg . '<br>';
|
||||||
echo $lg . '<br>';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -885,9 +885,9 @@ if ($u->info['clan_prava'] != 'glava') {
|
|||||||
);
|
);
|
||||||
while ($pl = mysql_fetch_array($sp)) {
|
while ($pl = mysql_fetch_array($sp)) {
|
||||||
if ($pl['uid'] > 0) {
|
if ($pl['uid'] > 0) {
|
||||||
$login = $u->microLogin($pl['uid'], 1);
|
$login = $u->getLogin($pl['uid']);
|
||||||
if ($tt[2][0] == 1) {
|
if ($tt[2][0] == 1) {
|
||||||
$pl['text'] = '<img src="//img.new-combats.tech/i/clear.gif" width="13" height="13" title="Удалить событие" class="leftimg" style="cursor:pointer" onclick="location=\'main.php?clan&events&pg=' . ceil(
|
$pl['text'] = '<img src="'.Config::img().'/i/clear.gif" width="13" height="13" title="Удалить событие" class="leftimg" style="cursor:pointer" onclick="location=\'main.php?clan&events&pg=' . ceil(
|
||||||
$pg
|
$pg
|
||||||
) . '&delete=' . $pl['id'] . '\'">' . $pl['text'];
|
) . '&delete=' . $pl['id'] . '\'">' . $pl['text'];
|
||||||
}
|
}
|
||||||
|
@ -270,7 +270,7 @@ function printDealersOnline(): void
|
|||||||
echo 'Нет алхимиков онлайн.';
|
echo 'Нет алхимиков онлайн.';
|
||||||
} else {
|
} else {
|
||||||
foreach ($stmt as $dealerId) {
|
foreach ($stmt as $dealerId) {
|
||||||
echo $u->microLogin($dealerId) . '<br>';
|
echo $u->getLogin($dealerId) . '<br>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -284,7 +284,7 @@ function printBukmekersOnline(): void
|
|||||||
echo 'Нет букмекеров онлайн.';
|
echo 'Нет букмекеров онлайн.';
|
||||||
} else {
|
} else {
|
||||||
foreach ($stmt as $dealerId) {
|
foreach ($stmt as $dealerId) {
|
||||||
echo $u->microLogin($dealerId) . '<br>';
|
echo $u->getLogin($dealerId) . '<br>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -298,7 +298,7 @@ function printModeratorsOnline(): void
|
|||||||
echo 'Нет модераторов онлайн.';
|
echo 'Нет модераторов онлайн.';
|
||||||
} else {
|
} else {
|
||||||
foreach ($stmt as $dealerId) {
|
foreach ($stmt as $dealerId) {
|
||||||
echo $u->microLogin($dealerId) . '<br>';
|
echo $u->getLogin($dealerId) . '<br>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -450,7 +450,7 @@ function printModeratorsOnline(): void
|
|||||||
<TD style="vertical-align: top; ">
|
<TD style="vertical-align: top; ">
|
||||||
<TABLE cellspacing=0 cellpadding=2 width="100%">
|
<TABLE cellspacing=0 cellpadding=2 width="100%">
|
||||||
<TR>
|
<TR>
|
||||||
<TD colspan="4" align="center"><h4>Контакты <br><br> <?= $u->microLogin($u->info['id']) ?></h4>
|
<TD colspan="4" align="center"><h4>Контакты <br><br> <?= $u->getLogin() ?></h4>
|
||||||
</TD>
|
</TD>
|
||||||
</TR>
|
</TR>
|
||||||
<?php
|
<?php
|
||||||
|
@ -1068,11 +1068,10 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
while ($plbip = mysql_fetch_array($spbip)) {
|
while ($plbip = mysql_fetch_array($spbip)) {
|
||||||
$plbipl .= '<span class="date1">' . date(
|
$plbipl .= '<span class="date1">' . date(
|
||||||
'd.m.Y H:i', $plbip['time']
|
'd.m.Y H:i', $plbip['time']
|
||||||
) . '</span> - ' . $plbip['ip'] . ' (' . $u->microLogin(
|
) . '</span> - ' . $plbip['ip'] . ' (' . $u->getLogin($plbip['uid']) .
|
||||||
$plbip['uid'], 1
|
') <input onclick="location.href=\'main.php?' . $zv . '&unblock_ip=' .
|
||||||
) . ') <input onclick="location.href=\'main.php?' . $zv . '&unblock_ip=' . htmlspecialchars(
|
htmlspecialchars($plbip['ip']) .
|
||||||
$plbip['ip']
|
'&blockip_list=1\'" type="button" value=" - "><br>';
|
||||||
) . '&blockip_list=1\'" type="button" value=" - "><br>';
|
|
||||||
}
|
}
|
||||||
if ($plbipl != '') {
|
if ($plbipl != '') {
|
||||||
echo '<b>Список заблокированных IP:</b><br>' . $plbipl;
|
echo '<b>Список заблокированных IP:</b><br>' . $plbipl;
|
||||||
@ -1354,7 +1353,7 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
);
|
);
|
||||||
if (isset($tst['id']) && $tst['admin'] == 0 && ($tst['no_ip'] == 0 || $tst['no_ip'] == '')) {
|
if (isset($tst['id']) && $tst['admin'] == 0 && ($tst['no_ip'] == 0 || $tst['no_ip'] == '')) {
|
||||||
if (!isset($ursz[$pl['uid']])) {
|
if (!isset($ursz[$pl['uid']])) {
|
||||||
$ursz[$pl['uid']] = $u->microLogin($pl['uid'], 1);
|
$ursz[$pl['uid']] = $u->getLogin($pl['uid']);
|
||||||
}
|
}
|
||||||
$de = mysql_fetch_array(
|
$de = mysql_fetch_array(
|
||||||
mysql_query(
|
mysql_query(
|
||||||
@ -1572,9 +1571,10 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
|
|
||||||
$rt .= '<div style="border-top:1px solid grey;padding:5px;">' . $i . '. <span class="date1">' . date(
|
$rt .= '<div style="border-top:1px solid grey;padding:5px;">' . $i . '. <span class="date1">' . date(
|
||||||
'd.m.y H:i', $pl['time']
|
'd.m.y H:i', $pl['time']
|
||||||
) . '</span> <b>' . $u->microLogin(
|
) . '</span> <b>' . $u->getLogin($pl['uid']) . '</b> , "' .
|
||||||
$pl['uid'], 1
|
$types[$pl['type']][0] . '" , Анимация: <b>' . $va[$pl['animation']] .
|
||||||
) . '</b> , "' . $types[$pl['type']][0] . '" , Анимация: <b>' . $va[$pl['animation']] . '</b> , Изображение для клана: <b>' . $va[$plcln] . '</b> , <img onclick="imresize(this,' . $types[$pl['type']][2] . ',' . $types[$pl['type']][1] . ');" style="border:1px solid blue;cursor:pointer;" src="/clan_prw/' . $pl['src'] . '" height="20">';
|
'</b> , Изображение для клана: <b>' . $va[$plcln] .
|
||||||
|
'</b> , <img onclick="imresize(this,' . $types[$pl['type']][2] . ',' . $types[$pl['type']][1] . ');" style="border:1px solid blue;cursor:pointer;" src="/clan_prw/' . $pl['src'] . '" height="20">';
|
||||||
|
|
||||||
$rt .= ' <input onclick="location.href=\'main.php?admin=1&grood_img=' . $pl['id'] . '\'" type="button" value="Принять" style="background:#E2EDD8"> <input type="button" onclick="location.href=\'main.php?admin=1&bad_img=' . $pl['id'] . '\'" style="background:#FCC9CA" value="Отказать"> <br>';
|
$rt .= ' <input onclick="location.href=\'main.php?admin=1&grood_img=' . $pl['id'] . '\'" type="button" value="Принять" style="background:#E2EDD8"> <input type="button" onclick="location.href=\'main.php?admin=1&bad_img=' . $pl['id'] . '\'" style="background:#FCC9CA" value="Отказать"> <br>';
|
||||||
|
|
||||||
@ -2073,9 +2073,7 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
);
|
);
|
||||||
$html = '';
|
$html = '';
|
||||||
while ($pl = mysql_fetch_array($sp)) {
|
while ($pl = mysql_fetch_array($sp)) {
|
||||||
$html .= $u->microLogin(
|
$html .= $u->getLogin($pl['id']) . ' -> <b>' . $pl['login'] . '</b> (id ' . $pl['id'] . ')<br>';
|
||||||
$pl['id'], 1
|
|
||||||
) . ' -> <b>' . $pl['login'] . '</b> (id ' . $pl['id'] . ')<br>';
|
|
||||||
}
|
}
|
||||||
if ($html == '') {
|
if ($html == '') {
|
||||||
$html = '<b style="color:red">Нет персонажей-невидимок</b>';
|
$html = '<b style="color:red">Нет персонажей-невидимок</b>';
|
||||||
@ -2163,7 +2161,7 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
$i = 1;
|
$i = 1;
|
||||||
echo '<br><b><font color=red>Персонажи зарегистрированные ' . $pld520 . '</font></b>';
|
echo '<br><b><font color=red>Персонажи зарегистрированные ' . $pld520 . '</font></b>';
|
||||||
while ($pl = mysql_fetch_array($sp)) {
|
while ($pl = mysql_fetch_array($sp)) {
|
||||||
$urt5202 = '<br>' . $i . '. ' . $u->microLogin($pl['id'], 1) . '';
|
$urt5202 = '<br>' . $i . '. ' . $u->getLogin($pl['id']);
|
||||||
|
|
||||||
if ($pl['banned'] > 0) {
|
if ($pl['banned'] > 0) {
|
||||||
$urt5202 = '<font color=red>' . $urt5202 . '</font>';
|
$urt5202 = '<font color=red>' . $urt5202 . '</font>';
|
||||||
@ -2177,9 +2175,7 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
$urt5202 .= ' <a href="/logs.php?log=' . $pl['battle'] . '" target="_blank"><img src=//img.new-combats.tech/i/fighttype0.gif title="Персонаж в поединке"></a>';
|
$urt5202 .= ' <a href="/logs.php?log=' . $pl['battle'] . '" target="_blank"><img src=//img.new-combats.tech/i/fighttype0.gif title="Персонаж в поединке"></a>';
|
||||||
}
|
}
|
||||||
if ($pl['host_reg'] > 0) {
|
if ($pl['host_reg'] > 0) {
|
||||||
$urt5202 .= ' <small>(Реферал персонажа ' . $u->microLogin(
|
$urt5202 .= ' <small>(Реферал персонажа ' . $u->getLogin($pl['host_reg']) . ')</small>';
|
||||||
$pl['host_reg'], 1
|
|
||||||
) . ')</small>';
|
|
||||||
}
|
}
|
||||||
$urt520 .= $urt5202;
|
$urt520 .= $urt5202;
|
||||||
$i++;
|
$i++;
|
||||||
@ -2221,7 +2217,7 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
);
|
);
|
||||||
if (isset($tst['id']) && $tst['admin'] == 0 && ($tst['no_ip'] == '' && $tst['no_ip'] == 0)) {
|
if (isset($tst['id']) && $tst['admin'] == 0 && ($tst['no_ip'] == '' && $tst['no_ip'] == 0)) {
|
||||||
if (!isset($ursz[$pl['uid']])) {
|
if (!isset($ursz[$pl['uid']])) {
|
||||||
$ursz[$pl['uid']] = $u->microLogin($pl['uid'], 1);
|
$ursz[$pl['uid']] = $u->getLogin($pl['uid']);
|
||||||
}
|
}
|
||||||
$r .= '<div style="padding:0 10px 5px 10px; margin:5px; border-bottom:1px solid #cac9c7;">';
|
$r .= '<div style="padding:0 10px 5px 10px; margin:5px; border-bottom:1px solid #cac9c7;">';
|
||||||
$r .= '<span style="display:inline-block;width:30px">' . $i . '.</span> <span style="display:inline-block;width:250px">' . $ursz[$pl['uid']] . '</span>';
|
$r .= '<span style="display:inline-block;width:30px">' . $i . '.</span> <span style="display:inline-block;width:250px">' . $ursz[$pl['uid']] . '</span>';
|
||||||
@ -2281,7 +2277,7 @@ if (isset($p['id']) || $u->info['align'] == 1 || $u->info['align'] == 3) {
|
|||||||
$rdl .= '<div style="display:inline-block;width:150px;color:green">' . date(
|
$rdl .= '<div style="display:inline-block;width:150px;color:green">' . date(
|
||||||
'd.m.Y H:i:s', $pl['time']
|
'd.m.Y H:i:s', $pl['time']
|
||||||
) . '</div>';
|
) . '</div>';
|
||||||
$rdl .= $pl['text'] . ' персонажу ' . $u->microLogin($pl['uid'], 1);
|
$rdl .= $pl['text'] . ' персонажу ' . $u->getLogin($pl['uid']);
|
||||||
$rdl .= '</div>';
|
$rdl .= '</div>';
|
||||||
}
|
}
|
||||||
if ($rdl == '') {
|
if ($rdl == '') {
|
||||||
|
@ -50,9 +50,9 @@ $sp = mysql_query('SELECT `id`,`align`,`login` FROM `users` WHERE (`align` > 1 A
|
|||||||
while( $pl = mysql_fetch_array($sp) ) {
|
while( $pl = mysql_fetch_array($sp) ) {
|
||||||
$pr = '<img class="cp" src="//img.new-combats.tech/i/lock.gif" title="Написать" width="20" height="15" onClick="top.chat.addto(\''.$pl['login'].'\',\'private\');">';
|
$pr = '<img class="cp" src="//img.new-combats.tech/i/lock.gif" title="Написать" width="20" height="15" onClick="top.chat.addto(\''.$pl['login'].'\',\'private\');">';
|
||||||
if( $pl['align'] == 1.99 ) {
|
if( $pl['align'] == 1.99 ) {
|
||||||
$sh .= '<div style="padding-bottom:5px;">'.$pr.' '.$u->microLogin($pl['id'],1).' <b style="color:red"> - Глава Ордена</b></div>';
|
$sh .= '<div style="padding-bottom:5px;">'.$pr.' '.$u->getLogin($pl['id']).' <b style="color:red"> - Глава Ордена</b></div>';
|
||||||
}else{
|
}else{
|
||||||
$sh .= '<div>'.$pr.' '.$u->microLogin($pl['id'],1).'</div>';
|
$sh .= '<div>'.$pr.' '.$u->getLogin($pl['id']).'</div>';
|
||||||
}
|
}
|
||||||
$sx++;
|
$sx++;
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ if (!defined('GAME')) {
|
|||||||
<td valign="top" align="left"><img src="//img.new-combats.tech/i/1x1.gif" alt="" width="1" height="5"/><br/>
|
<td valign="top" align="left"><img src="//img.new-combats.tech/i/1x1.gif" alt="" width="1" height="5"/><br/>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<center><? echo '' . $u->microLogin($u->info['id'], 1) . '<br>'; ?></center>
|
<center><?= $u->getLogin() . '<br>'; ?></center>
|
||||||
<td valign="top" align="right">
|
<td valign="top" align="right">
|
||||||
<input type="button" onClick="location.href='/main.php?obraz';" class="btn" value="Обновить"/>
|
<input type="button" onClick="location.href='/main.php?obraz';" class="btn" value="Обновить"/>
|
||||||
<input type="submit" class="btn" name="edit" value="Вернуться"/>
|
<input type="submit" class="btn" name="edit" value="Вернуться"/>
|
||||||
|
@ -25,7 +25,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
if ($pl['online'] > time() - 240) {
|
if ($pl['online'] > time() - 240) {
|
||||||
$clr = 'green';
|
$clr = 'green';
|
||||||
}
|
}
|
||||||
$xh1 .= '<tr><td align="center"><font color="' . $clr . '">' . $u->microLogin($pl, 2) . '</font></td></tr>';
|
$xh1 .= '<tr><td align="center"><font color="' . $clr . '">' . $u->getLogin($pl['id']) . '</font></td></tr>';
|
||||||
$sp2 = mysql_query(
|
$sp2 = mysql_query(
|
||||||
'SELECT `id`,`login`,`level`,`align`,`clan`,`online` FROM `users` WHERE `host_reg` = "' . $pl['id'] . '" AND `banned` = 0 ORDER BY `timereg` DESC'
|
'SELECT `id`,`login`,`level`,`align`,`clan`,`online` FROM `users` WHERE `host_reg` = "' . $pl['id'] . '" AND `banned` = 0 ORDER BY `timereg` DESC'
|
||||||
);
|
);
|
||||||
@ -35,7 +35,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
if ($pl2['online'] > time() - 240) {
|
if ($pl2['online'] > time() - 240) {
|
||||||
$clr = 'green';
|
$clr = 'green';
|
||||||
}
|
}
|
||||||
$xh2 .= '<tr><td align="center"><font color="' . $clr . '">' . $u->microLogin($pl2, 2) . '</font></td></tr>';
|
$xh2 .= '<tr><td align="center"><font color="' . $clr . '">' . $u->getLogin($pl2['id']) . '</font></td></tr>';
|
||||||
$sp3 = mysql_query(
|
$sp3 = mysql_query(
|
||||||
'SELECT `id`,`login`,`level`,`align`,`clan`,`online` FROM `users` WHERE `host_reg` = "' . $pl2['id'] . '" AND `banned` = 0 ORDER BY `timereg` DESC'
|
'SELECT `id`,`login`,`level`,`align`,`clan`,`online` FROM `users` WHERE `host_reg` = "' . $pl2['id'] . '" AND `banned` = 0 ORDER BY `timereg` DESC'
|
||||||
);
|
);
|
||||||
@ -45,9 +45,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
if ($pl3['online'] > time() - 240) {
|
if ($pl3['online'] > time() - 240) {
|
||||||
$clr = 'green';
|
$clr = 'green';
|
||||||
}
|
}
|
||||||
$xh3 .= '<tr><td align="center"><font color="' . $clr . '">' . $u->microLogin(
|
$xh3 .= '<tr><td align="center"><font color="' . $clr . '">' . $u->getLogin($pl3['id']) . '</font></td></tr>';
|
||||||
$pl3, 2
|
|
||||||
) . '</font></td></tr>';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -176,9 +174,8 @@ $reflink = $_SERVER['SERVER_NAME'] . DIRECTORY_SEPARATOR . 'r' . $u->info['id'];
|
|||||||
<p>Ваша ссылка на регистрацию для новых игроков: <b class="green"><?= $reflink ?></b></p>
|
<p>Ваша ссылка на регистрацию для новых игроков: <b class="green"><?= $reflink ?></b></p>
|
||||||
<?php
|
<?php
|
||||||
if (isset($rtg['id'])) {
|
if (isset($rtg['id'])) {
|
||||||
echo '<p>Реферал с пересечением IP (разрешены бонусы только за этого реферала): <b style="color: red">' . $u->microLogin(
|
echo '<p>Реферал с пересечением IP (разрешены бонусы только за этого реферала): <b style="color: red">' .
|
||||||
$rtg['uid2'], 1
|
$u->getLogin($rtg['uid2']) . '</b><br>' .
|
||||||
) . '</b><br>' .
|
|
||||||
'<small>(Сменить на другого реферала с одного IP больше нельзя!)</small></p>';
|
'<small>(Сменить на другого реферала с одного IP больше нельзя!)</small></p>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
@ -95,8 +95,8 @@ if($u->tfer['uid2']==$u->info['id'])
|
|||||||
$az = array(1=>2,2=>1);
|
$az = array(1=>2,2=>1);
|
||||||
}
|
}
|
||||||
$tu = array(
|
$tu = array(
|
||||||
1 => $u->microLogin($u->tfer['uid'.$az[1]],1),
|
1 => $u->getLogin($u->tfer['uid'.$az[1]]),
|
||||||
2 => $u->microLogin($u->tfer['uid'.$az[2]],1)
|
2 => $u->getLogin($u->tfer['uid'.$az[2]])
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<style>
|
<style>
|
||||||
|
@ -200,7 +200,7 @@ $tma = '';
|
|||||||
<tr>
|
<tr>
|
||||||
<TD>
|
<TD>
|
||||||
<?php
|
<?php
|
||||||
echo $u->microLogin($u->info['id']);
|
echo $u->getLogin();
|
||||||
$st = Conversion::dataStringToArray($u->info['stats']);
|
$st = Conversion::dataStringToArray($u->info['stats']);
|
||||||
if (
|
if (
|
||||||
$_GET['dec_transfer'] ||
|
$_GET['dec_transfer'] ||
|
||||||
|
@ -77,7 +77,7 @@ foreach ($bonus[(int)$u->info['align']]['items'] as $bonusItem) {
|
|||||||
let elem = document.getElementById('se-pre-con');
|
let elem = document.getElementById('se-pre-con');
|
||||||
elem.parentNode.removeChild(elem);
|
elem.parentNode.removeChild(elem);
|
||||||
</script>
|
</script>
|
||||||
<h3>Проходи, <?= $u->microLogin($u->info['id']) ?>, угощайся!</h3>
|
<h3>Проходи, <?= $u->getLogin() ?>, угощайся!</h3>
|
||||||
<div style="text-align: right;">
|
<div style="text-align: right;">
|
||||||
<input type="button" class="btn" value="Обновить" onclick="location='main.php?ap=1';">
|
<input type="button" class="btn" value="Обновить" onclick="location='main.php?ap=1';">
|
||||||
<input type="button" class="btn" value="Вернуться" onclick="location='main.php';">
|
<input type="button" class="btn" value="Вернуться" onclick="location='main.php';">
|
||||||
|
@ -116,7 +116,7 @@ body
|
|||||||
<?php
|
<?php
|
||||||
$sp = mysql_query('SELECT * FROM `fontan` WHERE `delete` = "0" AND `win` > 0 ORDER BY `id` DESC LIMIT 20');
|
$sp = mysql_query('SELECT * FROM `fontan` WHERE `delete` = "0" AND `win` > 0 ORDER BY `id` DESC LIMIT 20');
|
||||||
while($pl = mysql_fetch_array($sp)) {
|
while($pl = mysql_fetch_array($sp)) {
|
||||||
echo $u->microLogin($pl['uid'],1).' - '.$pl['win'].'кр.<br>';
|
echo $u->getLogin($pl['uid']).' - '.$pl['win'].'кр.<br>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<br /></td>
|
<br /></td>
|
||||||
@ -158,7 +158,7 @@ body
|
|||||||
white-space: -moz-pre-wrap;
|
white-space: -moz-pre-wrap;
|
||||||
white-space: -pre-wrap;
|
white-space: -pre-wrap;
|
||||||
white-space: -o-pre-wrap;
|
white-space: -o-pre-wrap;
|
||||||
word-wrap: break-word;"><div style="padding:0 10px 5px 10px; margin:5px; border-bottom:1px solid #cac9c7;"><?=$u->microLogin($pl['uid'],1)?>:<?php
|
word-wrap: break-word;"><div style="padding:0 10px 5px 10px; margin:5px; border-bottom:1px solid #cac9c7;"><?=$u->getLogin($pl['uid'])?>:<?php
|
||||||
if($u->info['admin'] > 0 || ($u->info['align'] > 1 && $u->info['align'] < 2)) {
|
if($u->info['admin'] > 0 || ($u->info['align'] > 1 && $u->info['align'] < 2)) {
|
||||||
echo ' <a href="?delm='.$pl['id'].'"><small>стереть</small></a>';
|
echo ' <a href="?delm='.$pl['id'].'"><small>стереть</small></a>';
|
||||||
}
|
}
|
||||||
|
@ -276,7 +276,7 @@ if (!isset($_GET['r'])) {
|
|||||||
</script>
|
</script>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="top" bgcolor="#D6D6D6"><?= $u->microLogin($u->info['id'], 1) ?></td>
|
<td align="center" valign="top" bgcolor="#D6D6D6"><?= $u->getLogin() ?></td>
|
||||||
<td align="center" valign="top" bgcolor="#D6D6D6"><B>Подходящие предметы в инвентаре</B></td>
|
<td align="center" valign="top" bgcolor="#D6D6D6"><B>Подходящие предметы в инвентаре</B></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@ -389,7 +389,7 @@ if (!isset($_GET['r'])) {
|
|||||||
</script>
|
</script>
|
||||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="top" bgcolor="#D6D6D6"><?= $u->microLogin($u->info['id'], 1) ?></td>
|
<td align="center" valign="top" bgcolor="#D6D6D6"><?= $u->getLogin() ?></td>
|
||||||
<td align="center" valign="top" bgcolor="#D6D6D6"><b>Подходящие предметы в инвентаре</b></td>
|
<td align="center" valign="top" bgcolor="#D6D6D6"><b>Подходящие предметы в инвентаре</b></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -25,7 +25,7 @@ while ($pl = mysql_fetch_array($sp)) {
|
|||||||
}
|
}
|
||||||
$i++;
|
$i++;
|
||||||
$uidz[$pl['uid']] = $i;
|
$uidz[$pl['uid']] = $i;
|
||||||
$text .= $i . '. <span class="date">' . date('d.m.Y H:i', $pl['time']) . '</span>, Волна: <b>' . $pl['voln'] . '</b>, ' . $u->microLogin($pl['uid'], 1) . '<br>';
|
$text .= $i . '. <span class="date">' . date('d.m.Y H:i', $pl['time']) . '</span>, Волна: <b>' . $pl['voln'] . '</b>, ' . $u->getLogin($pl['uid']) . '<br>';
|
||||||
}
|
}
|
||||||
if (empty($text)) {
|
if (empty($text)) {
|
||||||
$text = 'История пуста, скорее всего не нашлось смельчаков...';
|
$text = 'История пуста, скорее всего не нашлось смельчаков...';
|
||||||
|
@ -792,7 +792,7 @@ if ($re != '') {
|
|||||||
echo '<a href="?r=5&rnd=' . $code . '">Подгонка</a>';
|
echo '<a href="?r=5&rnd=' . $code . '">Подгонка</a>';
|
||||||
} ?>
|
} ?>
|
||||||
</td>
|
</td>
|
||||||
<td nowrap="nowrap" style="position: absolute; right: 290px;"><?= $u->microLogin($u->info['id'], 1) ?></td>
|
<td nowrap="nowrap" style="position: absolute; right: 290px;"><?= $u->getLogin() ?></td>
|
||||||
<td width="90%"> </td>
|
<td width="90%"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
@ -827,7 +827,7 @@ if ($hostel['balance'] <= 0 && $u->room['id'] != 214 && $sleep['vars'] != 'sleep
|
|||||||
<table bgcolor="#c8c8c8" width="100%" cellspacing="0" cellpadding="0" border="0">
|
<table bgcolor="#c8c8c8" width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="52%" style="border-left:1px solid #a5a5a5; border-bottom:1px solid #a5a5a5; padding:2px 0px 2px 5px;"
|
<td width="52%" style="border-left:1px solid #a5a5a5; border-bottom:1px solid #a5a5a5; padding:2px 0px 2px 5px;"
|
||||||
align='left'><?= $u->microLogin($u->info['id'], 1) ?></td>
|
align='left'><?= $u->getLogin() ?></td>
|
||||||
<td style="<?= ($result['additional'] == '' ? 'border-bottom:1px solid #a5a5a5;' : '') ?>"
|
<td style="<?= ($result['additional'] == '' ? 'border-bottom:1px solid #a5a5a5;' : '') ?>"
|
||||||
align='center'><?= ($result['additional'] != '' ? $result['additional'] : '') ?></td>
|
align='center'><?= ($result['additional'] != '' ? $result['additional'] : '') ?></td>
|
||||||
<td style="border-right:1px solid #a5a5a5; border-bottom:1px solid #a5a5a5; padding: 2px 15px 2px 0px;" align='right'><h4
|
<td style="border-right:1px solid #a5a5a5; border-bottom:1px solid #a5a5a5; padding: 2px 15px 2px 0px;" align='right'><h4
|
||||||
|
@ -182,7 +182,7 @@ if (isset($_POST['name'], $_POST['hobby'], $_POST['ChatColor'], $_POST['saveanke
|
|||||||
<?= $error ?? '' ?>
|
<?= $error ?? '' ?>
|
||||||
<!-- content -->
|
<!-- content -->
|
||||||
<div style="text-align: center; margin-bottom: 8px;">
|
<div style="text-align: center; margin-bottom: 8px;">
|
||||||
<?= $u->microLogin($u->info['id'], 1) ?>
|
<?= $u->getLogin() ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form method="post">
|
<form method="post">
|
||||||
|
5
sms.php
5
sms.php
@ -13,9 +13,8 @@ if (isset($_GET['test'])) {
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
if ($prc['a'] > 0) {
|
if ($prc['a'] > 0) {
|
||||||
echo $u->microLogin(
|
echo $u->getLogin($pl['id']) .
|
||||||
$pl, 2
|
' - - - - - - - - <b>' . ($prc['a']) . ' (вещи) + ' . $pl['money2'] . ' ЕКР</b> \ <b>' . ($prc['b'] + $pl['money1']) . ' КР</b><br>';
|
||||||
) . ' - - - - - - - - <b>' . ($prc['a']) . ' (вещи) + ' . $pl['money2'] . ' ЕКР</b> \ <b>' . ($prc['b'] + $pl['money1']) . ' КР</b><br>';
|
|
||||||
echo '<hr>';
|
echo '<hr>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user