diff --git a/winner.php b/winner.php
index 0cd6cfb8..a96ac813 100644
--- a/winner.php
+++ b/winner.php
@@ -38,13 +38,12 @@ if(isset($_GET['newdid'])) {
header("Location: ".$_SERVER['PHP_SELF']);
exit;
}
-else {
- $building->procBuild($_GET);
-}
+else $building->procBuild($_GET);
+
$sql = mysqli_query($database->dblink,"SELECT vref FROM ".TB_PREFIX."fdata WHERE f99 = '100' and f99t = '40'");
$winner = mysqli_num_rows($sql);
- if($winner!=0){
+ if($winner > 0){
## Get Rankings for Ranking Section
## Top 3 Population
@@ -64,16 +63,13 @@ else {
AND " . TB_PREFIX . "users.id = userid
)allitag
FROM " . TB_PREFIX . "users
- WHERE " . TB_PREFIX . "users.access < ".(INCLUDE_ADMIN ? "10" : "8")." AND " . TB_PREFIX . "users.id > 4
+ WHERE " . TB_PREFIX . "users.access < ".(INCLUDE_ADMIN ? "10" : "8")." AND " . TB_PREFIX . "users.tribe <= 3
ORDER BY totalpop DESC, totalvillages DESC, username ASC";
$result = (mysqli_query($database->dblink,$q));
- while($row = mysqli_fetch_assoc($result))
- {
- $datas[] = $row;
- }
- foreach($datas as $result)
- {
+ while($row = mysqli_fetch_assoc($result)) $datas[] = $row;
+
+ foreach($datas as $result){
$value['userid'] = $result['userid'];
$value['username'] = $result['username'];
$value['alliance'] = $result['alliance'];
@@ -93,16 +89,13 @@ else {
WHERE " . TB_PREFIX . "vdata.owner = userid
)pop
FROM " . TB_PREFIX . "users
- WHERE " . TB_PREFIX . "users.apall >=0 AND " . TB_PREFIX . "users.access < " . (INCLUDE_ADMIN ? "10" : "8") . " AND " . TB_PREFIX . "users.tribe <= 3
+ WHERE " . TB_PREFIX . "users.apall >= 0 AND " . TB_PREFIX . "users.access < " . (INCLUDE_ADMIN ? "10" : "8") . " AND " . TB_PREFIX . "users.tribe <= 3
ORDER BY " . TB_PREFIX . "users.apall DESC, pop DESC, username ASC";
- $result = mysqli_query($database->dblink,$q) or die(mysqli_error($database->dblink));
- while($row = mysqli_fetch_assoc($result))
- {
- $attacker[] = $row;
- }
- foreach($attacker as $key => $row)
- {
+ $result = mysqli_query($database->dblink,$q);
+ while($row = mysqli_fetch_assoc($result)) $attacker[] = $row;
+
+ foreach($attacker as $key => $row){
$value['username'] = $row['username'];
$value['totalvillages'] = $row['totalvillages'];
$value['id'] = $row['userid'];
@@ -111,25 +104,22 @@ else {
}
## Top Defender
$q = "
- SELECT " . TB_PREFIX . "users.id userid, " . TB_PREFIX . "users.username username, " . TB_PREFIX . "users.dpall, (
- SELECT COUNT( " . TB_PREFIX . "vdata.wref )
- FROM " . TB_PREFIX . "vdata
- WHERE " . TB_PREFIX . "vdata.owner = userid AND type != 99
+ SELECT ".TB_PREFIX."users.id userid, ".TB_PREFIX."users.username username, ".TB_PREFIX."users.dpall, (
+ SELECT COUNT(".TB_PREFIX."vdata.wref)
+ FROM ".TB_PREFIX."vdata
+ WHERE ".TB_PREFIX."vdata.owner = userid AND type != 99
)totalvillages, (
- SELECT SUM( " . TB_PREFIX . "vdata.pop )
- FROM " . TB_PREFIX . "vdata
- WHERE " . TB_PREFIX . "vdata.owner = userid
+ SELECT SUM(".TB_PREFIX."vdata.pop)
+ FROM ". TB_PREFIX . "vdata
+ WHERE ". TB_PREFIX . "vdata.owner = userid
)pop
- FROM " . TB_PREFIX . "users
- WHERE " . TB_PREFIX . "users.dpall >=0 AND " . TB_PREFIX . "users.access < " . (INCLUDE_ADMIN ? "10" : "8") . "
- ORDER BY " . TB_PREFIX . "users.dpall DESC, pop DESC, username ASC";
- $result = mysqli_query($database->dblink,$q) or die(mysqli_error($database->dblink));
- while($row = mysqli_fetch_assoc($result))
- {
- $defender[] = $row;
- }
- foreach($defender as $key => $row)
- {
+ FROM ".TB_PREFIX."users
+ WHERE ". TB_PREFIX."users.dpall >= 0 AND ".TB_PREFIX."users.access < ".(INCLUDE_ADMIN ? "10" : "8")." AND ".TB_PREFIX."users.tribe <= 3
+ ORDER BY ".TB_PREFIX."users.dpall DESC, pop DESC, username ASC";
+ $result = mysqli_query($database->dblink,$q);
+ while($row = mysqli_fetch_assoc($result)) $defender[] = $row;
+
+ foreach($defender as $key => $row){
$value['username'] = $row['username'];
$value['totalvillages'] = $row['totalvillages'];
$value['id'] = $row['userid'];
@@ -144,16 +134,16 @@ else {
$winningvillagename = $database->getVillage($vref)['name'];
$owner = $database->getVillage($vref)['owner'];
- $sql = mysqli_query($database->dblink,"SELECT username FROM ".TB_PREFIX."users WHERE id = '$owner'")or die(mysqli_error($database->dblink));
+ $sql = mysqli_query($database->dblink,"SELECT username FROM ".TB_PREFIX."users WHERE id = '$owner'");
$username = mysqli_result($sql, 0);
- $sql = mysqli_query($database->dblink,"SELECT alliance FROM ".TB_PREFIX."users WHERE id = '$owner'")or die(mysqli_error($database->dblink));
+ $sql = mysqli_query($database->dblink,"SELECT alliance FROM ".TB_PREFIX."users WHERE id = '$owner'");
$allianceid = mysqli_result($sql, 0);
- $sql = mysqli_query($database->dblink,"SELECT name, tag FROM ".TB_PREFIX."alidata WHERE id = '$allianceid'")or die(mysqli_error($database->dblink));
+ $sql = mysqli_query($database->dblink,"SELECT name, tag FROM ".TB_PREFIX."alidata WHERE id = '$allianceid'");
$winningalliance = mysqli_result($sql, 0);
- $sql = mysqli_query($database->dblink,"SELECT tag FROM ".TB_PREFIX."alidata WHERE id = '$allianceid'")or die(mysqli_error($database->dblink));
+ $sql = mysqli_query($database->dblink,"SELECT tag FROM ".TB_PREFIX."alidata WHERE id = '$allianceid'");
$winningalliancetag = mysqli_result($sql, 0);
$sql = mysqli_query($database->dblink,"SELECT ww_lastupdate FROM ".TB_PREFIX."fdata WHERE vref = '$vref'");
@@ -175,14 +165,11 @@ else {
gpack == null || GP_ENABLE == false)
- {
+ if($session->gpack == null || GP_ENABLE == false){
echo "
";
- }
- else
- {
+ }else{
echo "
";
@@ -225,12 +212,12 @@ else {
"Total Population: ">" was the ruler over the largest personal empire, followed closely by "Total Population: ">" and "Total Population: ">".
- Without requiring any introduction, "Attack Points: ">" was quickly recognized in the gathered crowd, with shades of awe and fear. Building a reputation for cunning and cruel tactics on the battlefield, he is known as the most ruthless of the attackers. Together, with glancing gaze and the glory of the won battles, there are "Attack Points: ">" and "Attack Points: ">" commanders of the second and third army of attack. Their skill in the battle will inspire legends in the coming era.
- "Defence Points: ">" was greeted by the gathered, while following the procession to the top. A brilliant strategist and champion of the people, he is known throughout the world as the greatest defender ever to protect a city. Next to honor, "Defence Points: "> and "Defence Points: ">" the commanders of the second and third armies of brave defenders look proudly at the grateful crowd.
+ Without requiring any introduction, "Attack Points: ">" was quickly recognized in the gathered crowd, with shades of awe and fear. Building a reputation for cunning and cruel tactics on the battlefield, he is known as the most ruthless of the attackers. Together, with glancing gaze and the glory of the won battles, there are "Attack Points: ">" and "Attack Points: ">" commanders of the second and third army of attack. Their skill in the battle will inspire legends in the coming era.
+ "Defence Points: ">" was greeted by the gathered, while following the procession to the top. A brilliant strategist and champion of the people, he is known throughout the world as the greatest defender ever to protect a city. Next to honor, "Defence Points: "> and "Defence Points: ">" the commanders of the second and third armies of brave defenders look proudly at the grateful crowd.
Warriors, leaders, heroes, stood together, looking over the world they explored and conquered. Although the feast will end and people will go back to their daily lives again, this day will remain in their memory forever.
We, the Travian Romania Team, thank you and we look forward to a new adventure in a new Travian world.
+We, the TravianZ Team, thank you and we look forward to a new adventure in a new TravianZ world.