mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
182 lines
5.9 KiB
Smarty
182 lines
5.9 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 SQL_CACHE * FROM ".TB_PREFIX."users WHERE tribe = 1");
|
|
$tribe2 = mysqli_query($GLOBALS["link"], "SELECT SQL_CACHE * FROM ".TB_PREFIX."users WHERE tribe = 2");
|
|
$tribe3 = mysqli_query($GLOBALS["link"], "SELECT SQL_CACHE * 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 SQL_CACHE * FROM ".TB_PREFIX."users")) - 1;
|
|
?>
|
|
|
|
<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 SQL_CACHE * 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 SQL_CACHE * 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 SQL_CACHE * 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 SQL_CACHE * FROM ".TB_PREFIX."vdata");
|
|
$num_rows = mysqli_num_rows($result);
|
|
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 $percents = 100*($tribes[0] / $users); echo $percents = intval ($percents); echo "%"; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Teutons</td>
|
|
<td><?php echo $tribes[1]; ?></td>
|
|
<td><?php $percents = 100*($tribes[1] / $users); echo $percents = intval ($percents); echo "%";?></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Gauls</td>
|
|
<td><?php echo $tribes[2]; ?></td>
|
|
<td><?php $percents = 100*($tribes[2] / $users); echo $percents = intval ($percents); echo "%"; ?></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
|
|
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++)
|
|
{
|
|
$t = mysqli_query($GLOBALS["link"], "SELECT SUM(u".$i.") AS sumof FROM ".TB_PREFIX."units");
|
|
$troop = mysqli_fetch_assoc($t);
|
|
echo '<td class="on">'.$troop['sumof'].'</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++)
|
|
{
|
|
$t = mysqli_query($GLOBALS["link"], "SELECT SUM(u".$i.") AS sumof FROM ".TB_PREFIX."units");
|
|
$troop = mysqli_fetch_assoc($t);
|
|
echo '<td class="on">'.$troop['sumof'].'</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++)
|
|
{
|
|
$t = mysqli_query($GLOBALS["link"], "SELECT SUM(u".$i.") AS sumof FROM ".TB_PREFIX."units");
|
|
$troop = mysqli_fetch_assoc($t);
|
|
echo '<td class="on">'.$troop['sumof'].'</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++)
|
|
{
|
|
$t = mysqli_query($GLOBALS["link"], "SELECT SUM(u".$i.") AS sumof FROM ".TB_PREFIX."units");
|
|
$troop = mysqli_fetch_assoc($t);
|
|
echo '<td class="on">'.$troop['sumof'].'</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++)
|
|
{
|
|
$t = mysqli_query($GLOBALS["link"], "SELECT SUM(u".$i.") AS sumof FROM ".TB_PREFIX."units");
|
|
$troop = mysqli_fetch_assoc($t);
|
|
echo '<td class="on">'.$troop['sumof'].'</td>';
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<div> |