mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 08:34:33 +00:00
178 lines
5.8 KiB
Smarty
178 lines
5.8 KiB
Smarty
<?php
|
|
#################################################################################
|
|
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
|
|
## --------------------------------------------------------------------------- ##
|
|
## Filename server_info.tpl ##
|
|
## Developed by: Dzoki ##
|
|
## License: TravianX Project ##
|
|
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
|
|
## Enhanced: aggenkeech ##
|
|
#################################################################################
|
|
|
|
$tribe1 = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE tribe = 1");
|
|
$tribe2 = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE tribe = 2");
|
|
$tribe3 = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE tribe = 3");
|
|
$tribes = Array(mysqli_num_rows($tribe1),mysqli_num_rows($tribe2),mysqli_num_rows($tribe3));
|
|
$users = mysqli_num_rows(mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE tribe > 0 AND tribe < 4"));
|
|
?>
|
|
|
|
<br /><br />
|
|
<table id="profile">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Player Information</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Registered players</td>
|
|
<td><?php echo $users; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Active players</td>
|
|
<td><?php $result = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."active"); $num_rows = mysqli_num_rows($result); echo $num_rows; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Players online</td>
|
|
<td><?php $t =time();
|
|
$result = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE timestamp > ".($t - 300)) or die(mysqli_error($database->dblink));
|
|
$num_rows = mysqli_num_rows($result);
|
|
echo $num_rows;?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Players Banned</td>
|
|
<td><?php
|
|
$result = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."users WHERE access = 0");
|
|
$num_rows = mysqli_num_rows($result);
|
|
echo $num_rows; ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Villages settled</td>
|
|
<td><?php
|
|
$result = mysqli_query($GLOBALS["link"], "SELECT Count(*) as Total FROM ".TB_PREFIX."vdata");
|
|
$num_rows = mysqli_fetch_array($result, MYSQLI_ASSOC)['Total'];
|
|
echo $num_rows;
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<table id="profile">
|
|
<thead>
|
|
<tr><th colspan="3">Player Information</th></tr>
|
|
<td class="b">Tribe</td>
|
|
<td class="b">Registered</td>
|
|
<td class="b">Percent</td>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Romans</td>
|
|
<td><?php echo $tribes[0]; ?></td>
|
|
<td><?php echo ($users > 0) ? ($percents[0] = round(100 * ($tribes[0] / $users), 2))."%" : "---"; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Teutons</td>
|
|
<td><?php echo $tribes[1]; ?></td>
|
|
<td><?php echo ($users > 0) ? ($percents[1] = round(100 * ($tribes[1] / $users), 2))."%" : "---"; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Gauls</td>
|
|
<td><?php echo $tribes[2]; ?></td>
|
|
<td><?php echo ($users > 0) ? (100-$percents[0]-$percents[1])."%" : "---"; ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<table id="profile">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="3">Server Information</th>
|
|
</tr>
|
|
<td class="b"></td>
|
|
<td class="b">Total</td>
|
|
<td class="b">Average</td>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><img src="../<?php echo GP_LOCATE; ?>img/a/gold.gif" alt="Gold" title="Gold"> Gold</td>
|
|
<td><?php $gold = mysqli_query($GLOBALS["link"], "SELECT SUM(gold) AS sumofgold FROM ".TB_PREFIX."users"); $getgold=mysqli_fetch_assoc($gold); echo $getgold['sumofgold']; ?></td>
|
|
<td><?php $gold = mysqli_query($GLOBALS["link"], "SELECT SUM(gold) AS sumofgold FROM ".TB_PREFIX."users"); $getgold=mysqli_fetch_assoc($gold); echo round($getgold['sumofgold'] / $users);?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<table id="member">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="10">Troops on the Server</th>
|
|
</tr>
|
|
<?php
|
|
$cells = ['SUM(hero) as hero'];
|
|
|
|
for($i=1; $i<51; $i++) {
|
|
array_push($cells, 'SUM(u'.$i.') AS u'.$i);
|
|
}
|
|
|
|
$units_villages = mysqli_fetch_assoc(mysqli_query($GLOBALS["link"], "SELECT ".implode(',', $cells)." FROM ".TB_PREFIX."units"));
|
|
$units_enforcements = mysqli_fetch_assoc(mysqli_query($GLOBALS["link"], "SELECT ".implode(',', $cells)." FROM ".TB_PREFIX."enforcement"));
|
|
|
|
for($i=1; $i<11; $i++) {
|
|
echo '<td class="on"><img src="../'.GP_LOCATE.'img/u/'.$i.'.gif"></td>';
|
|
}
|
|
|
|
echo '</thead><tbody>';
|
|
for($i=1; $i<11; $i++) {
|
|
echo '<td class="on">'.($units_villages['u'.$i] + $units_enforcements['u'.$i]).'</td>';
|
|
}
|
|
|
|
echo "</tr>";
|
|
for($i=11; $i<21; $i++) {
|
|
echo '<td class="on"><img src="../'.GP_LOCATE.'img/u/'.$i.'.gif"></td>';
|
|
}
|
|
|
|
echo '</thead><tbody>';
|
|
for($i=11; $i<21; $i++) {
|
|
echo '<td class="on">'.($units_villages['u'.$i] + $units_enforcements['u'.$i]).'</td>';
|
|
}
|
|
|
|
echo "</tr>";
|
|
for($i=21; $i<31; $i++) {
|
|
echo '<td class="on"><img src="../'.GP_LOCATE.'img/u/'.$i.'.gif"></td>';
|
|
}
|
|
|
|
echo '</thead><tbody>';
|
|
for($i=21; $i<31; $i++) {
|
|
echo '<td class="on">'.($units_villages['u'.$i] + $units_enforcements['u'.$i]).'</td>';
|
|
}
|
|
|
|
echo "</tr>";
|
|
for($i=31; $i<41; $i++) {
|
|
echo '<td class="on"><img src="../'.GP_LOCATE.'img/u/'.$i.'.gif"></td>';
|
|
}
|
|
|
|
echo '</thead><tbody>';
|
|
for($i=31; $i<41; $i++) {
|
|
echo '<td class="on">'.($units_villages['u'.$i] + $units_enforcements['u'.$i]).'</td>';
|
|
}
|
|
|
|
echo "</tr>";
|
|
for($i=41; $i<51; $i++) {
|
|
echo '<td class="on"><img src="../'.GP_LOCATE.'img/u/'.$i.'.gif"></td>';
|
|
}
|
|
|
|
echo '</thead><tbody>';
|
|
for($i=41; $i<51; $i++) {
|
|
echo '<td class="on">'.($units_villages['u'.$i] + $units_enforcements['u'.$i]).'</td>';
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<div>
|