mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-09-05 01:47:16 +00:00
show natars attacking in ww ranking by SlimShady95
This commit is contained in:
+52
-53
@@ -1,53 +1,52 @@
|
||||
<?php
|
||||
if(WW==True){
|
||||
$result = mysql_query("select ".TB_PREFIX."users.id, ".TB_PREFIX."users.username,".TB_PREFIX."users.alliance, ".TB_PREFIX."fdata.wwname, ".TB_PREFIX."fdata.f99, ".TB_PREFIX."vdata.name, ".TB_PREFIX."fdata.vref
|
||||
FROM ".TB_PREFIX."users
|
||||
INNER JOIN ".TB_PREFIX."vdata ON ".TB_PREFIX."users.id = ".TB_PREFIX."vdata.owner
|
||||
INNER JOIN ".TB_PREFIX."fdata ON ".TB_PREFIX."fdata.vref = ".TB_PREFIX."vdata.wref
|
||||
WHERE ".TB_PREFIX."fdata.f99t = 40 ORDER BY ".TB_PREFIX."fdata.f99 Desc ");
|
||||
|
||||
?>
|
||||
<table cellpadding="1" cellspacing="1" id="villages" class="row_table_data">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="6">
|
||||
Wonder of the world
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>Player</td>
|
||||
<td>Name</td>
|
||||
<td>Alliance</td>
|
||||
<td>Level</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</thead><tbody>
|
||||
<?php
|
||||
$cont = 1;
|
||||
while($row = mysql_fetch_array($result))
|
||||
|
||||
{
|
||||
$ally = $database->getAlliance($row[alliance]);
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $cont; $cont++;?>.</td>
|
||||
<td><?php
|
||||
echo "<a href=\"karte.php?d=".$row['vref']."&c=".$generator->getMapCheck($row['vref'])."\">";
|
||||
?>
|
||||
<?php
|
||||
echo "$row[username]";
|
||||
?>
|
||||
</a>
|
||||
</td>
|
||||
<td><?php echo $row['wwname'];?></td>
|
||||
<td><a href="allianz.php?aid=<?php echo $ally['id'];?>"><?php echo $ally['tag'];?></a></td>
|
||||
<td><?php echo $row['f99'];?></td>
|
||||
|
||||
|
||||
</tr>
|
||||
<?php }}else{
|
||||
header("Location: statistiken.php");
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
if (WW == True)
|
||||
{
|
||||
$result = mysql_query("select " . TB_PREFIX . "users.id, " . TB_PREFIX . "users.username," . TB_PREFIX . "users.alliance, " . TB_PREFIX . "fdata.wwname, " . TB_PREFIX . "fdata.f99, " . TB_PREFIX . "vdata.name, " . TB_PREFIX . "fdata.vref
|
||||
FROM " . TB_PREFIX . "users
|
||||
INNER JOIN " . TB_PREFIX . "vdata ON " . TB_PREFIX . "users.id = " . TB_PREFIX . "vdata.owner
|
||||
INNER JOIN " . TB_PREFIX . "fdata ON " . TB_PREFIX . "fdata.vref = " . TB_PREFIX . "vdata.wref
|
||||
WHERE " . TB_PREFIX . "fdata.f99t = 40 ORDER BY " . TB_PREFIX . "fdata.f99 Desc ");
|
||||
?>
|
||||
<table cellpadding="1" cellspacing="1" id="villages" class="row_table_data">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="7">Wonder of the world</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>Player</td>
|
||||
<td>Name</td>
|
||||
<td>Alliance</td>
|
||||
<td>Level</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$cont = 1;
|
||||
while ($row = mysql_fetch_array($result))
|
||||
{
|
||||
$ally = $database->getAlliance($row[alliance]);
|
||||
$query = @mysql_query('SELECT * FROM `' . TB_PREFIX . 'ww_attacks` WHERE `vid` = ' . $row['vref'] . ' ORDER BY `attack_time` ASC LIMIT 1');
|
||||
$row2 = @mysql_fetch_assoc($query);
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo $cont; $cont++; ?>.</td>
|
||||
<td><?php echo "<a href=\"karte.php?d=" . $row['vref'] . "&c=" . $generator->getMapCheck($row['vref']) . "\">"; ?><?php echo $row['username']; ?></a></td>
|
||||
<td><?php echo $row['wwname']; ?></td>
|
||||
<td><a href="allianz.php?aid=<?php echo $ally['id']; ?>"><?php echo $ally['tag']; ?></a></td>
|
||||
<td><?php echo $row['f99']; ?></td>
|
||||
<?php if ($row2['attack_time'] != 0): ?>
|
||||
<td><img src="gpack/travian_default/img/a/att1.gif" title="<?php print date('d.m.Y, H:i:s', $row2['attack_time']); ?>" /></td>
|
||||
<?php else: ?>
|
||||
<td> </td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
header("Location: statistiken.php");
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user