dev-fixes #27

Closed
lopar wants to merge 12 commits from dev-fixes into dev
Showing only changes of commit be3f7a3645 - Show all commits

View File

@ -7,11 +7,123 @@
if (!defined('GAME')) {
die();
}
$sunduk1 = "i/titul/nagr1.gif";
$sunduk2 = "i/titul/nagr2.gif";
$sunduk3 = "i/titul/nagr3.gif";
$sunduk4 = "i/titul/nagr4.gif";
$sunduk5 = "i/titul/nagr5.gif";
const TIERS = 'Ранги';
const PRIZE = 'Награда';
$achievement_data = [
'zb' => [
'quest' => 'Выполнить задания бабки.',
'check' => ['Заданий', 5, 25, 50, 100, 250],
'prize' => array_map(function ($int) {
return 'Жетон <br>успеха <br>' . $int;
}, [5, 20, 40, 60, 100]),
'startlink' => 11
],
'vx' => [
'quest' => 'Победить в хаотических боях.',
'check' => ['Побед', 50, 300, 400, 500, 1000],
'prize' => array_map(function ($int) {
return $int . 'екр.';
}, [25, 50, 75, 100, 200]),
'startlink' => 21
],
'snt' => [
'quest' => 'Открыть сундук трупожора.',
'check' => ['Открытий', 5, 25, 50, 100, 250],
'prize' => array_map(function ($int) {
return $int . 'екр.';
}, [10, 25, 50, 75, 200]),
'startlink' => 31
],
'rp' => [
'quest' => 'Получить руну при плавке плохих заготовок. [S]',
'check' => ['Рун', 5, 10, 25, 50, 100],
'prize' => array_map(function ($int) {
return 'Плохие <br> заготовки <br>' . $int;
}, [5, 7, 10, 12, 15]),
'startlink' => 41
],
'rn' => [
'quest' => 'Получить руну при плавке нормальных заготовок. [M]',
'check' => ['Рун', 5, 10, 15, 25, 50],
'prize' => array_map(function ($int) {
return 'Нормальные <br> заготовки <br>' . $int;
}, [5, 7, 9, 12, 15]),
'startlink' => 51
],
'rb' => [
'quest' => 'Получить руну при плавке идеальных заготовок. [L]',
'check' => ['Рун', 2, 5, 8, 11, 15],
'prize' => array_map(function ($int) {
return 'Идеальные <br> заготовки <br>' . $int;
}, [2, 4, 6, 10, 15]),
'startlink' => 61
],
'pg' => [
'quest' => 'Поучаствовать в героическом сражении.',
'check' => ['Участий', 100, 200, 400, 600, 1000],
'prize' => array_map(function ($int) {
return 'Жетон <br>успеха <br>' . $int;
}, [10, 20, 40, 60, 80]),
'startlink' => 71
],
'bv' => [
'quest' => 'Продать бабушке найденные вещи в пещере.',
'check' => ['Продаж', 5, 25, 50, 100, 250],
'prize' => array_map(function ($int) {
return $int . 'кр.';
}, [500, 1000, 2000, 4000, 5000]),
'startlink' => 81
],
'kw' => [
'quest' => 'Победить в клановой войне.',
'check' => ['Побед', 5, 10, 15, 20, 25],
'prize' => array_map(function ($int) {
return 'Свиток <br> кланового<br> опыта ' . $int;
}, [1, 2, 5, 10, 15]),
'startlink' => 91
],
'pa' => [ # not implemented!
'quest' => 'Получить покровительство Ангела.',
'check' => ['Получено', 5, 25, 50, 100, 250],
'prize' => null,
'startlink' => null
],
'bs' => [
'quest' => 'Победы в башне смерти.',
'check' => ['Побед', 1, 5, 10, 50, 500],
'prize' => array_map(function ($int) {
return $int . 'екр.';
}, [1, 5, 10, 50, 200]),
'startlink' => 101
],
'trn' => [ # not implemented!
'quest' => 'Победы в турнирах.',
'check' => ['Побед', 25, 50, 100, 200, 500],
'prize' => array_map(function ($int) {
return $int . 'екр.';
}, [25, 25, 25, 25, 50]),
'startlink' => null
],
];
function table($rows, $class = '', $fill = false)
{
$c = '';
$max_rows = sizeof(max($rows));
foreach ($rows as $row) {
if ($fill && sizeof($row) < $max_rows) {
$row = array_merge($row, array_fill(0, $max_rows - sizeof($row), ''));
}
$c .= '<tr><td>' . implode('</td><td>', $row) . '</td></tr>';
}
return (!empty($class) ? "<table class='$class'>" : '<table>') . $c . '</table>' . PHP_EOL;
}
$ai = $u->achivInf($u->info['id'], 1);
if (isset($_GET['nagr'])) {
if ( //Это надо переписать полностью. Эта проверка - сраный костыль.
@ -435,580 +547,79 @@ if (isset($_GET['nagr'])) {
//-------------
mysql_query("INSERT INTO `chat` (`new`,`city`,`room`,`login`,`to`,`text`,`time`,`type`,`toChat`) VALUES ('1','" . $u->info['city'] . "','" . $u->info['room'] . "','','" . $u->info['login'] . "','" . $nagrtxt . "','-1','6','0')");
}
function drawSunduk($nagr, $whatInside, $tier)
{
echo vsprintf('<img onclick="%s" onmouseover="%s" onmouseout="%s" onmousedown="%s" class="cp" src="%s" alt="Сундук">',
[
"location.href='\main.php?titul&nagr=$nagr'",
"top.hi(this, '<b>Сундук $tier ранга<hr>Содержит:<hr> $whatInside</b>', event, 2, 0, 1, 1, 'max-width:307px')",
"top.hic();",
"top.hic();",
"https://img.new-combats.com/i/titul/nagr$tier.gif"
]);
}
?>
<P align=right><INPUT class="btn" TYPE=button value="Подсказка"
onclick="window.open('/encicl/help/titul.html', 'help', 'height=300,width=500,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes')">
<INPUT TYPE="button" class="btn" onClick="top.frames['main'].location = 'main.php';" value="Вернуться" name=edit>
</P>
<style>
/* for table() function */
table.prizelist {
border-spacing: 1px;
border-collapse: separate;
min-width: 500px;
}
table.prizelist tr {
background-color: #C7C7C7;
}
table.prizelist td {
padding: 3px;
text-align: center;
}
table.prizelist td:first-child {
width: 100px;
}
table.prizelist tr:first-child,
table.prizelist td:first-child {
background-color: #a5a5a5;
}
</style>
<div style="text-align: right;">
<input class="btn" type="button" value="Подсказка"
onclick="window.open('/encicl/help/titul.html', 'help', 'height=300,width=500,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes')">
<input class="btn" type="button" value="Вернуться" onClick="top.frames['main'].location = 'main.php';" name=edit>
</div>
<H3>Достижения</H3>
<? $zd = 'zb'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Выполнить задания бабки.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Выполнить задания бабки.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Заданий</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">100</td>
<td style="text-align: center;">250</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">Жетон <br>успеха <br>5</td>
<td style="text-align: center;">Жетон <br>успеха <br>20</td>
<td style="text-align: center;">Жетон <br>успеха <br>40</td>
<td style="text-align: center;">Жетон <br>успеха <br>60</td>
<td style="text-align: center;">Жетон <br>успеха <br>100</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Бабка задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=11\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>жетоны успеха: 1</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=12\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>жетоны успеха: 2</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=13\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>жетоны успеха: 5</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=14\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>жетоны успеха: 10</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=15\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>жетоны успеха: 20</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
<?php
foreach ($achievement_data as $key => $value) {
echo '<h4>' . $ai['name' . $key] . '</h4>';
echo '<strong>' . $value[$key]['quest'] . '</strong>';
echo 'Сейчас у Вас Ранг: <strong>' . $ai['klas' . $key] . '</strong>';
echo 'Количество выполнений: <strong>' . $ai[$key] . ' =' . $ai['klasP' . $key] . '%</strong>';
echo table([
[TIERS, 1, 2, 3, 4, 5],
$value[$key]['check'],
array_merge([PRIZE], $value[$key]['prize'])
], 'prizelist', true);
# If has new tier, AND only first 5 tiers AND prize is set.
if (
$ai['klas' . $key] > $ai[$key . '_n'] &&
in_array($ai[$key . '_n'], [0, 1, 2, 3, 4]) &&
!empty($value[$key]['prize']) &&
!empty($value[$key]['startlink'])
) {
echo '<br>' . PRIZE . ':<br>';
drawSunduk(
$ai[$key . '_n'] + $value[$key]['startlink'],
$value[$key]['prize'][$ai[$key . '_n']],
$ai[$key . '_n'] + $value[$key]['startlink']
);
}
echo '<hr>';
}
?>
<hr>
<? $zd = 'vx'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Победить в хаотических боях.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Победить в хаотических боях.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Побед</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">300</td>
<td style="text-align: center;">400</td>
<td style="text-align: center;">500</td>
<td style="text-align: center;">1000</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">25 екр.</td>
<td style="text-align: center;">50 екр.</td>
<td style="text-align: center;">75 екр.</td>
<td style="text-align: center;">100 екр.</td>
<td style="text-align: center;">200 екр.</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Хаот задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=21\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>25 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=22\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>50 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=23\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>75 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=24\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>100 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=25\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>200 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'snt'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Открыть сундук трупожора.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Открыть сундук трупожора.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Открытий</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">100</td>
<td style="text-align: center;">250</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">10 екр.</td>
<td style="text-align: center;">25 екр.</td>
<td style="text-align: center;">50 екр.</td>
<td style="text-align: center;">75 екр.</td>
<td style="text-align: center;">200 екр.</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Сундук задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=31\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>10 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=32\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>25 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=33\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>50 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=34\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>75 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=35\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>200 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'rp'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Получить руну при плавке плохих заготовок. ( S руну )</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Получить руну при плавке плохих заготовок. ( S руну )</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Рун</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">10</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">100</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">Плохие <br> заготовки <br> 5</td>
<td style="text-align: center;">Плохие <br> заготовки <br> 7</td>
<td style="text-align: center;">Плохие <br> заготовки <br> 10</td>
<td style="text-align: center;">Плохие <br> заготовки <br> 12</td>
<td style="text-align: center;">Плохие <br> заготовки <br> 15</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //S задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=41\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>Плохие заготовки 5</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=42\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>Плохие заготовки 10</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=43\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>Плохие заготовки 15</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=44\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>Плохие заготовки 20</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=45\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>Плохие заготовки 25</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'rn'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Получить руну при плавке нормальных заготовок. ( M руну )</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Получить руну при плавке нормальных заготовок. ( M руну )</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Рун</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">10</td>
<td style="text-align: center;">15</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">Нормальные <br> заготовки <br> 5</td>
<td style="text-align: center;">Нормальные <br> заготовки <br> 7</td>
<td style="text-align: center;">Нормальные <br> заготовки <br> 9</td>
<td style="text-align: center;">Нормальные <br> заготовки <br> 12</td>
<td style="text-align: center;">Нормальные <br> заготовки <br> 15</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //M задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=51\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>Нормальные заготовки 5</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=52\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>Нормальные заготовки 10</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=53\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>Нормальные заготовки 20</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=54\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>Нормальные заготовки 40</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=55\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>Нормальные заготовки 60</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'rb'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Получить руну при плавке идеальных заготовок. ( L руну )</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Получить руну при плавке идеальных заготовок. ( L руну )</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Рун</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">8</td>
<td style="text-align: center;">11</td>
<td style="text-align: center;">15</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">Идеальные <br> заготовки <br> 2</td>
<td style="text-align: center;">Идеальные <br> заготовки <br> 4</td>
<td style="text-align: center;">Идеальные <br> заготовки <br> 6</td>
<td style="text-align: center;">Идеальные <br> заготовки <br> 10</td>
<td style="text-align: center;">Идеальные <br> заготовки <br> 15</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //L задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=61\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>Идеальные заготовки 5</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=62\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>Идеальные заготовки 10</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=63\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>Идеальные заготовки 20</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=64\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>Идеальные заготовки 40</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=65\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>Идеальные заготовки 60</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'pg'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Поучаствовать в героическом сражении.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Поучаствовать в героическом сражении.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Участий</td>
<td style="text-align: center;">100</td>
<td style="text-align: center;">200</td>
<td style="text-align: center;">400</td>
<td style="text-align: center;">600</td>
<td style="text-align: center;">1000</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">Жетон <br> Успеха <br> 10</td>
<td style="text-align: center;">Жетон <br> Успеха <br> 20</td>
<td style="text-align: center;">Жетон <br> Успеха <br> 40</td>
<td style="text-align: center;">Жетон <br> Успеха <br> 60</td>
<td style="text-align: center;">Жетон <br> Успеха <br> 80</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Героик задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=71\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>Жетон Успеха 10</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=72\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>Жетон Успеха 20</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=73\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>Жетон Успеха 40</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=74\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>Жетон Успеха 60</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=75\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>Жетон Успеха 80</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'bv'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Продать бабушке найденные вещи в пещере.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Продать бабушке найденные вещи в пещере.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Продаж</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">100</td>
<td style="text-align: center;">250</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">500кр.</td>
<td style="text-align: center;">1000кр.</td>
<td style="text-align: center;">2000кр.</td>
<td style="text-align: center;">4000кр.</td>
<td style="text-align: center;">5000кр.</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Героик задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=81\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>500кр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=82\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>1000кр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=83\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>2000кр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=84\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>4000кр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=85\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>5000кр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'kw'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Победить в клановой войне.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Победить в клановой войне.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Побед</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">100</td>
<td style="text-align: center;">250</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;">Свиток <br> кланового<br> опыта 1</td>
<td style="text-align: center;">Свиток <br> кланового<br> опыта 2</td>
<td style="text-align: center;">Свиток <br> кланового<br> опыта 5</td>
<td style="text-align: center;">Свиток <br> кланового<br> опыта 10</td>
<td style="text-align: center;">Свиток <br> кланового<br> опыта 15</td>
</tr>
</table>
</body>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Клан вар задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=91\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>Свиток <br> кланового<br> опыта 1.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=92\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>Свиток <br> кланового<br> опыта 2.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=93\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>Свиток <br> кланового<br> опыта 5.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=94\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>Свиток <br> кланового<br> опыта 10.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=95\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>Свиток <br> кланового<br> опыта 15.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<? $zd = 'pa'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Получить покровительство Ангела.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Получить покровительство Ангела.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Побед</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">25</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">100</td>
<td style="text-align: center;">250</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;"> -</td>
<td style="text-align: center;"> -</td>
<td style="text-align: center;"> -</td>
<td style="text-align: center;"> -</td>
<td style="text-align: center;"> -</td>
</tr>
</table>
</body>
<hr>
<? $zd = 'bs'; ?>
<H4><? echo $ai['name' . $zd]; ?></H4>
<b>Победы в башне смерти.</b><br>
Сейчас у Вас Ранг: <b><? echo $ai['klas' . $zd]; ?></b>. Количество выполнений: <b><? echo $ai[$zd]; ?>
=<? echo $ai['klasP' . $zd]; ?>%</b><br>
<title>Получить покровительство Ангела.</title>
</head>
<body>
<table border="0" cellpadding="3" cellspacing="1">
<tr bgcolor="#A5A5A5">
<td style="text-align: center;">Ранги</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">2</td>
<td style="text-align: center;">3</td>
<td style="text-align: center;">4</td>
<td style="text-align: center;">5</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Побед</td>
<td style="text-align: center;">1</td>
<td style="text-align: center;">5</td>
<td style="text-align: center;">10</td>
<td style="text-align: center;">50</td>
<td style="text-align: center;">500</td>
</tr>
<tr bgcolor="#C7C7C7">
<td bgcolor="#A5A5A5" style="text-align: center;">Награда</td>
<td style="text-align: center;"> 1 Екр.</td>
<td style="text-align: center;"> 5 Екр.</td>
<td style="text-align: center;"> 10 Екр.</td>
<td style="text-align: center;"> 50 Екр.</td>
<td style="text-align: center;"> 200 Екр.</td>
</tr>
</table>
<?
if ($ai['klas' . $zd] > $ai[$zd . '_n']) //Хаот задание
{
echo '<br>Награда:<br>';
if ($ai[$zd . '_n'] == 0) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=101\';" onMouseOver="top.hi(this,\'<b>Сундук 1 Ранга<hr>Содержит:<hr>1 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk1 . '">';
} elseif ($ai[$zd . '_n'] == 1) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=102\';" onMouseOver="top.hi(this,\'<b>Сундук 2 Ранга<hr>Содержит:<hr>5 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk2 . '">';
} elseif ($ai[$zd . '_n'] == 2) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=103\';" onMouseOver="top.hi(this,\'<b>Сундук 3 Ранга<hr>Содержит:<hr>10 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk3 . '">';
} elseif ($ai[$zd . '_n'] == 3) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=104\';" onMouseOver="top.hi(this,\'<b>Сундук 4 Ранга<hr>Содержит:<hr>50 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk4 . '">';
} elseif ($ai[$zd . '_n'] == 4) {
echo '<img onclick="location.href=\'/main.php?titul&nagr=105\';" onMouseOver="top.hi(this,\'<b>Сундук 5 Ранга<hr>Содержит:<hr>200 екр.</b>\',event,2,0,1,1,\'max-width:307px\')" onMouseOut="top.hic();" onMouseDown="top.hic();" class="cp" src="https://img.new-combats.com/' . $sunduk5 . '">';
}
}
?>
<hr>
<?= '<br>' . $red ?>