game/breakchaos.php

133 lines
4.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
const GAME = true;
include('_incl_data/__config.php');
include('_incl_data/class/__db_connect.php');
$u = User::start();
$r1 = '';
$r2 = '';
$lvl = 8;
$lvl_name = 'Любители';
if ($_GET['level'] == 9) {
$lvl = 9;
$lvl_name = 'Бывалые';
} elseif ($_GET['level'] == 10) {
$lvl = 10;
$lvl_name = 'Профессионалы';
} elseif ($_GET['level'] == 11) {
$lvl = 11;
$lvl_name = 'Жители';
}
$i = 1;
$j = 1;
$sp = mysql_query(
'SELECT `id`,`uid`,`level`,`time` FROM `izlom_rating` WHERE `level` = "' . $lvl . '" GROUP BY `uid` ORDER BY SUM(`obr`) DESC'
);
while ($pl = mysql_fetch_array($sp)) {
//
$ret = mysql_fetch_array(
mysql_query(
'SELECT SUM(`obr`) FROM `izlom_rating` WHERE `uid` = "' . $pl['uid'] . '" AND `level` = "' . $pl['level'] . '" LIMIT 1'
)
);
$ret = round($ret[0] * (154.97));
//
$pl2 = mysql_fetch_array(
mysql_query(
'SELECT * FROM `izlom_rating` WHERE `uid` = "' . $pl['uid'] . '" AND `level` = "' . $pl['level'] . '" ORDER BY `time` DESC LIMIT 1'
)
);
//
$r1 .= '<tr height="20">
<td>' . $i . '</td>
<td>' . $u->getLogin($pl['uid']) . '</td>
<td>' . $pl2['voln'] . '</td>
<td>' . $ret . '</td>
<td>&raquo;&raquo;</td>
</tr>';
//
if (date('d.m.Y') == date('d.m.Y', $pl2['time'])) {
$r2 .= '<tr height="20">
<td>' . $j . '</td>
<td>' . $u->getLogin($pl['uid']) . '</td>
<td>' . $pl2['voln'] . '</td>
<td>' . $ret . '</td>
<td>&raquo;&raquo;</td>
</tr>';
$j++;
}
$i++;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Архив: Поединки</title>
<link href="//img.new-combats.tech/css/main.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#E2E0E0">
<h4>
<center>
Излом Хаоса
<table width="100%">
<tbody>
<tr>
<td valign="top">
<fieldset>
<legend>
<h5><?= $lvl_name ?> - лучшие за месяц</h5>
</legend>
<?php if ($r1 != '') { ?>
<table align="center">
<tbody>
<tr>
<td><h6>Место</h6></td>
<td><h6>Боец</h6></td>
<td><h6>Последняя волна</h6></td>
<td><h6>Рейтинг</h6></td>
<td><h6>Лог боя</h6></td>
</tr>
<?= $r1 ?>
</tbody>
</table>
<?php } else {
echo 'История пуста, скорее всего не нашлось смельчаков...';
} ?>
</fieldset>
</td>
<td valign="top">
<fieldset>
<legend>
<h5>Бывалые - лучшие за день</h5>
</legend>
<?php if ($r2 != '') { ?>
<table align="center">
<tbody>
<tr>
<td><h6>Место</h6></td>
<td><h6>Боец</h6></td>
<td><h6>Последняя волна</h6></td>
<td><h6>Рейтинг</h6></td>
<td><h6>Лог боя</h6></td>
</tr>
<?= $r2 ?>
</tbody>
</table>
<?php } else {
echo 'История пуста, скорее всего не нашлось смельчаков...';
} ?>
</fieldset>
</td>
</tr>
</tbody>
</table>
</center>
</h4>
</body>
</html>