2023-03-31 18:42:06 +00:00
|
|
|
|
<?php
|
2023-07-31 15:01:52 +00:00
|
|
|
|
|
|
|
|
|
use Core\Config;
|
|
|
|
|
|
|
|
|
|
if (!defined('GAME')) {
|
|
|
|
|
die();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @var User $u */
|
|
|
|
|
/** @var string $code */
|
|
|
|
|
/** @var string $goline */
|
|
|
|
|
/** @var string $rowonmax */
|
|
|
|
|
|
|
|
|
|
if ($u->room['file'] != 'izlom16') {
|
|
|
|
|
return;
|
2022-06-06 21:30:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-31 15:01:52 +00:00
|
|
|
|
if (!empty($re)) {
|
|
|
|
|
$re = '<b style="color: red">' . $re . '</b>';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$now = date("H") >= 6 && date("H") < 22 ? 'day' : 'night';
|
|
|
|
|
|
2022-06-06 21:30:34 +00:00
|
|
|
|
?>
|
2023-07-31 15:01:52 +00:00
|
|
|
|
<table style="border: 0; width: 100%;" cellspacing="0" cellpadding="0">
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="width: 250px; vertical-align: top;">
|
|
|
|
|
<?php $usee = $u->getInfoPers($u->info['id'], 0);
|
|
|
|
|
if ($usee) {
|
|
|
|
|
echo $usee[0];
|
|
|
|
|
} else {
|
|
|
|
|
echo 'information is lost.';
|
|
|
|
|
} ?>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="padding-top:19px; width: 230px; vertical-align: top;">
|
|
|
|
|
<?php require_once('modules_data/stats_loc.php'); ?>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="vertical-align: top;">
|
|
|
|
|
<?= $re ?>
|
|
|
|
|
<div style="text-align: right;">
|
|
|
|
|
<div style="position:relative; cursor: pointer;" id="ione">
|
|
|
|
|
<img src="<?= Config::img() ?>/i/images/300x225/ap_bg_iz_npc100500.jpg" alt="" id="img_ione" style="border: 1px solid black;">
|
|
|
|
|
<script>
|
2022-06-06 21:30:34 +00:00
|
|
|
|
<!--
|
2023-07-31 15:01:52 +00:00
|
|
|
|
if (document.getElementById('ione')) {
|
2022-06-06 21:30:34 +00:00
|
|
|
|
document.getElementById('ione').appendChild(document.getElementById('buttons_on_image'));
|
|
|
|
|
document.getElementById('buttons_on_image').style.position = 'absolute';
|
|
|
|
|
document.getElementById('buttons_on_image').style.bottom = '8px';
|
|
|
|
|
document.getElementById('buttons_on_image').style.right = '23px';
|
2023-07-31 15:01:52 +00:00
|
|
|
|
} else {
|
2022-06-06 21:30:34 +00:00
|
|
|
|
document.getElementById('buttons_on_image').style.display = 'none';
|
|
|
|
|
}
|
|
|
|
|
-->
|
2023-07-31 15:01:52 +00:00
|
|
|
|
</script>
|
|
|
|
|
<div style="position: relative; left: -10px; top: -90px; z-index: 94;">
|
|
|
|
|
<img <?php thisInfRm('1.180.0.321'); ?> src="<?= Config::img() ?>/i/images/300x225/ab_iz_exit.gif" class="aFilter" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div style="position: relative; left: -58px; top: -252px; z-index: 94;">
|
|
|
|
|
<img <?php thisInfRm('1.180.0.269'); ?> src="<?= Config::img() ?>/i/images/300x225/ab_iz_gate.gif" class="aFilter" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div style="position: relative; left: -400px; top: -220px; z-index: 94;">
|
|
|
|
|
<img <?php thisInfRm('3.180.0.??'); ?> src="<?= Config::img() ?>/i/images/300x225/ab_iz_shop.gif" class="aFilter" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div style="position: relative; left: -250px; top: -440px; z-index: 94;">
|
|
|
|
|
<img onclick="location.href='main.php?talk=4'" src="<?= Config::img() ?>/i/images/300x225/ab_iz_npc.gif" class="aFilter" title="Диалог с Шейла" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div id="snow"></div>
|
|
|
|
|
<?= $goline; ?>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="display:none; height:0;" id="moveto"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
2022-06-06 21:30:34 +00:00
|
|
|
|
</table>
|