Server is under maintenance
pageLoadTimeStart(); ################################################################################# ## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ## ## --------------------------------------------------------------------------- ## ## Project: TravianZ ## ## Version: 18.02.2014 ## ## Description: When the player builds Wonder of the World ## ## to level 100 the winner details are shown. ## ## tells the players the game is over ## ## Authors: aggenkeech - and a little help from Eyas95 ## ## Page: winner.php ## ## Fixed by: Shadow ## ## License: TravianZ Project ## ## Copyright: TravianZ (c) 2010-2013. All rights reserved. ## ## URLs: http://travian.shadowss.ro ## ## Source code: https://github.com/Shadowss/TravianZ/ ## ## ## ################################################################################# use App\Utils\AccessLogger; if (!function_exists('mysqli_result')) { function mysqli_result($res, $row, $field = 0) { $res->data_seek($row); $datarow = $res->fetch_array(); return $datarow[$field]; } } include_once("GameEngine/Village.php"); AccessLogger::logRequest(); if(isset($_GET['newdid'])) { $_SESSION['wid'] = $_GET['newdid']; header("Location: ".$_SERVER['PHP_SELF']); exit; } if($_SESSION['ok'] == 2){ ?>
Server is under maintenance