mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-11 15:16:08 +00:00
more fixes
This commit is contained in:
@@ -92,6 +92,7 @@ $timeformat = new timeFormatGenerator;
|
|||||||
{ ?>
|
{ ?>
|
||||||
<a href="<?php echo HOMEPAGE; ?>">Server Homepage</a>
|
<a href="<?php echo HOMEPAGE; ?>">Server Homepage</a>
|
||||||
<a href="admin.php">Control Panel Home</a>
|
<a href="admin.php">Control Panel Home</a>
|
||||||
|
<a href="<?php echo SERVER; ?>dorf1.php">Return to the server</a>
|
||||||
<br />
|
<br />
|
||||||
<a href="?action=logout">Logout</a>
|
<a href="?action=logout">Logout</a>
|
||||||
<br />
|
<br />
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ $sessionaccess = $access['access'];
|
|||||||
|
|
||||||
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
||||||
|
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."allimedal WHERE id = ".$delete."");
|
mysql_query("UPDATE ".TB_PREFIX."allimedal set del = 1 WHERE id = ".$delete."");
|
||||||
|
|
||||||
header("Location: ../../../Admin/admin.php?p=alliance&aid=".$aid."");
|
header("Location: ../../../Admin/admin.php?p=alliance&aid=".$aid."");
|
||||||
?>
|
?>
|
||||||
@@ -24,7 +24,7 @@ $sessionaccess = $access['access'];
|
|||||||
|
|
||||||
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
||||||
|
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."allimedal WHERE allyid = ".$aid."");
|
mysql_query("UPDATE ".TB_PREFIX."allimedal set del = 1 WHERE allyid = ".$aid."");
|
||||||
|
|
||||||
header("Location: ../../../Admin/admin.php?p=alliance&aid=".$aid."");
|
header("Location: ../../../Admin/admin.php?p=alliance&aid=".$aid."");
|
||||||
?>
|
?>
|
||||||
@@ -23,7 +23,7 @@ $sessionaccess = $access['access'];
|
|||||||
|
|
||||||
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
||||||
|
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."allimedal WHERE week = ".$deleteweek."");
|
mysql_query("UPDATE ".TB_PREFIX."allimedal set del = 1 WHERE week = ".$deleteweek."");
|
||||||
|
|
||||||
header("Location: ../../../Admin/admin.php?p=delallymedal");
|
header("Location: ../../../Admin/admin.php?p=delallymedal");
|
||||||
?>
|
?>
|
||||||
@@ -23,7 +23,7 @@ $sessionaccess = $access['access'];
|
|||||||
|
|
||||||
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
||||||
|
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."medal WHERE userid = ".$userid."");
|
mysql_query("UPDATE ".TB_PREFIX."medal set del = 1 WHERE userid = ".$userid."");
|
||||||
|
|
||||||
header("Location: ../../../Admin/admin.php?p=player&uid=".$userid."");
|
header("Location: ../../../Admin/admin.php?p=player&uid=".$userid."");
|
||||||
?>
|
?>
|
||||||
@@ -23,7 +23,7 @@ $sessionaccess = $access['access'];
|
|||||||
|
|
||||||
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
if($sessionaccess != 9) die("<h1><font color=\"red\">Access Denied: You are not Admin!</font></h1>");
|
||||||
|
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."medal WHERE week = ".$deleteweek."");
|
mysql_query("UPDATE ".TB_PREFIX."medal set del = 1 WHERE week = ".$deleteweek."");
|
||||||
|
|
||||||
header("Location: ../../../Admin/admin.php?p=delmedal");
|
header("Location: ../../../Admin/admin.php?p=delmedal");
|
||||||
?>
|
?>
|
||||||
@@ -19,7 +19,7 @@ if ($session->access < ADMIN) die("Access Denied: You are not Admin!");
|
|||||||
$medalid = $_POST['medalid'];
|
$medalid = $_POST['medalid'];
|
||||||
$uid = $_POST['uid'];
|
$uid = $_POST['uid'];
|
||||||
|
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."medal WHERE id = ".$medalid."");
|
mysql_query("UPDATE ".TB_PREFIX."medal set del = 1 WHERE id = ".$medalid."");
|
||||||
|
|
||||||
$name = mysql_query("SELECT name FROM ".TB_PREFIX."users WHERE id= ".$uid."");
|
$name = mysql_query("SELECT name FROM ".TB_PREFIX."users WHERE id= ".$uid."");
|
||||||
$name = mysql_result($name, 0);
|
$name = mysql_result($name, 0);
|
||||||
@@ -28,7 +28,7 @@ mysql_query("Insert into ".TB_PREFIX."admin_log values (0,$admid,'Deleted medal
|
|||||||
|
|
||||||
|
|
||||||
$deleteweek = $_POST['medalweek'];
|
$deleteweek = $_POST['medalweek'];
|
||||||
mysql_query("DELETE FROM ".TB_PREFIX."medal WHERE week = ".$deleteweek."");
|
mysql_query("UPDATE ".TB_PREFIX."medal set del = 1 WHERE week = ".$deleteweek."");
|
||||||
|
|
||||||
header("Location: ../../../Admin/admin.php?p=player&uid=".$uid."");
|
header("Location: ../../../Admin/admin.php?p=player&uid=".$uid."");
|
||||||
?>
|
?>
|
||||||
@@ -143,7 +143,7 @@ class Automation {
|
|||||||
return $popT;
|
return $popT;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function Automation() {
|
public function Automation() {
|
||||||
|
|
||||||
$this->ClearUser();
|
$this->ClearUser();
|
||||||
$this->ClearInactive();
|
$this->ClearInactive();
|
||||||
@@ -205,6 +205,7 @@ class Automation {
|
|||||||
$this->updateGeneralAttack();
|
$this->updateGeneralAttack();
|
||||||
$this->checkInvitedPlayes();
|
$this->checkInvitedPlayes();
|
||||||
$this->updateStore();
|
$this->updateStore();
|
||||||
|
$this->procClimbers();
|
||||||
}
|
}
|
||||||
|
|
||||||
private function loyaltyRegeneration() {
|
private function loyaltyRegeneration() {
|
||||||
@@ -3828,6 +3829,61 @@ $crannyimg = "<img src=\"".GP_LOCATE."img/g/g23.gif\" height=\"20\" width=\"15\"
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function procClimbers() {
|
||||||
|
global $database, $ranking;
|
||||||
|
$users = "SELECT * FROM " . TB_PREFIX . "users WHERE tribe!=0 AND tribe!=4 AND tribe!=5";
|
||||||
|
$array = $database->query_return($users);
|
||||||
|
$ranking->procRankArray();
|
||||||
|
foreach($array as $session){
|
||||||
|
$oldrank = $ranking->searchRank($session['username'], "username");
|
||||||
|
$q = "SELECT * FROM ".TB_PREFIX."medal order by week DESC LIMIT 0, 1";
|
||||||
|
$result = mysql_query($q);
|
||||||
|
if(mysql_num_rows($result)) {
|
||||||
|
$row=mysql_fetch_assoc($result);
|
||||||
|
$week=($row['week']+1);
|
||||||
|
} else {
|
||||||
|
$week='1';
|
||||||
|
}
|
||||||
|
if($week > 1){
|
||||||
|
if($session['oldrank'] > $oldrank) {
|
||||||
|
$totalpoints = $session['oldrank'] - $oldrank;
|
||||||
|
$database->addclimberrankpop($session['id'], $totalpoints);
|
||||||
|
$database->updateoldrank($session['id'], $oldrank);
|
||||||
|
} else
|
||||||
|
if($session['oldrank'] < $oldrank) {
|
||||||
|
$totalpoints = $oldrank - $session['oldrank'];
|
||||||
|
$database->removeclimberrankpop($session['id'], $session['oldrank']);
|
||||||
|
$database->updateoldrank($session['id'], $oldrank);
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
$totalpoints = count($ranking->getRank()) - $oldrank;
|
||||||
|
$database->setclimberrankpop($session['id'], $totalpoints);
|
||||||
|
$database->updateoldrank($session['id'], $oldrank);
|
||||||
|
}
|
||||||
|
$database->updateoldrank($session['id'], $oldrank);
|
||||||
|
}
|
||||||
|
$countally = count($database->countAlli());
|
||||||
|
if($countally > 0){
|
||||||
|
for($i=1;$i<=$countally;$i++){
|
||||||
|
$memberlist = $database->getAllMember($i);
|
||||||
|
$oldrank = 0;
|
||||||
|
foreach($memberlist as $member) {
|
||||||
|
$oldrank += $database->getVSumField($member['id'],"pop");
|
||||||
|
}
|
||||||
|
$ally = $database->getAlliance($i);
|
||||||
|
if($ally['oldrank'] < $oldrank) {
|
||||||
|
$totalpoints = $oldrank - $ally['oldrank'];
|
||||||
|
$database->addclimberrankpopAlly($ally['id'], $totalpoints);
|
||||||
|
$database->updateoldrankAlly($ally['id'], $oldrank);
|
||||||
|
} else
|
||||||
|
if($ally['oldrank'] > $oldrank) {
|
||||||
|
$totalpoints = $ally['oldrank'] - $oldrank;
|
||||||
|
$database->removeclimberrankpopAlly($ally['id'], $totalpoints);
|
||||||
|
$database->updateoldrankAlly($ally['id'], $oldrank);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$automation = new Automation;
|
$automation = new Automation;
|
||||||
?>
|
?>
|
||||||
@@ -659,14 +659,14 @@ class MYSQL_DB {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getProfileMedal($uid) {
|
function getProfileMedal($uid) {
|
||||||
$q = "SELECT id,categorie,plaats,week,img,points from " . TB_PREFIX . "medal where userid = $uid order by id desc";
|
$q = "SELECT id,categorie,plaats,week,img,points from " . TB_PREFIX . "medal where userid = $uid and del = 0 order by id desc";
|
||||||
$result = mysql_query($q, $this->connection);
|
$result = mysql_query($q, $this->connection);
|
||||||
return $this->mysql_fetch_all($result);
|
return $this->mysql_fetch_all($result);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getProfileMedalAlly($uid) {
|
function getProfileMedalAlly($uid) {
|
||||||
$q = "SELECT id,categorie,plaats,week,img,points from " . TB_PREFIX . "allimedal where allyid = $uid order by id desc";
|
$q = "SELECT id,categorie,plaats,week,img,points from " . TB_PREFIX . "allimedal where allyid = $uid and del = 0 order by id desc";
|
||||||
$result = mysql_query($q, $this->connection);
|
$result = mysql_query($q, $this->connection);
|
||||||
return $this->mysql_fetch_all($result);
|
return $this->mysql_fetch_all($result);
|
||||||
|
|
||||||
@@ -2584,6 +2584,10 @@ class MYSQL_DB {
|
|||||||
$q = "UPDATE " . TB_PREFIX . "users set clp = clp - '$cp'' where id = $user";
|
$q = "UPDATE " . TB_PREFIX . "users set clp = clp - '$cp'' where id = $user";
|
||||||
return mysql_query($q, $this->connection);
|
return mysql_query($q, $this->connection);
|
||||||
}
|
}
|
||||||
|
function setclimberrankpop($user, $cp) {
|
||||||
|
$q = "UPDATE " . TB_PREFIX . "users set clp = '$cp' where id = $user";
|
||||||
|
return mysql_query($q, $this->connection);
|
||||||
|
}
|
||||||
function updateoldrank($user, $cp) {
|
function updateoldrank($user, $cp) {
|
||||||
$q = "UPDATE " . TB_PREFIX . "users set oldrank = '$cp' where id = $user";
|
$q = "UPDATE " . TB_PREFIX . "users set oldrank = '$cp' where id = $user";
|
||||||
return mysql_query($q, $this->connection);
|
return mysql_query($q, $this->connection);
|
||||||
|
|||||||
+1
-28
@@ -66,21 +66,6 @@
|
|||||||
$this->getStart(1);
|
$this->getStart(1);
|
||||||
} else {
|
} else {
|
||||||
$this->getStart($this->searchRank($session->alliance, "id"));
|
$this->getStart($this->searchRank($session->alliance, "id"));
|
||||||
$oldrank = $this->searchRank($session->alliance, "id");
|
|
||||||
|
|
||||||
|
|
||||||
$ally = $database->getAlliance($session->alliance);
|
|
||||||
if($ally['oldrank'] > $oldrank) {
|
|
||||||
$totalpoints = $ally['oldrank'] - $oldrank;
|
|
||||||
$database->addclimberrankpopAlly($ally['id'], $totalpoints);
|
|
||||||
$database->updateoldrankAlly($ally['id'], $oldrank);
|
|
||||||
} else
|
|
||||||
if($ally['oldrank'] < $oldrank) {
|
|
||||||
$totalpoints = $oldrank - $ally['oldrank'];
|
|
||||||
$database->removeclimberrankpopAlly($ally['id'], $totalpoints);
|
|
||||||
$database->updateoldrankAlly($ally['id'], $oldrank);
|
|
||||||
}
|
|
||||||
$database->updateoldrankAlly($ally['id'], $oldrank);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 41:
|
case 41:
|
||||||
@@ -103,18 +88,6 @@
|
|||||||
} else {
|
} else {
|
||||||
$this->procRankArray();
|
$this->procRankArray();
|
||||||
$this->getStart($this->searchRank($session->username, "username"));
|
$this->getStart($this->searchRank($session->username, "username"));
|
||||||
$oldrank = $this->searchRank($session->username, "username");
|
|
||||||
if($session->oldrank > $oldrank) {
|
|
||||||
$totalpoints = $session->oldrank - $oldrank;
|
|
||||||
$database->addclimberrankpop($session->uid, $totalpoints);
|
|
||||||
$database->updateoldrank($session->uid, $oldrank);
|
|
||||||
} else
|
|
||||||
if($session->oldrank < $oldrank) {
|
|
||||||
$totalpoints = $oldrank - $session->oldrank;
|
|
||||||
$database->removeclimberrankpop($session->uid, $session->oldrank);
|
|
||||||
$database->updateoldrank($session->uid, $oldrank);
|
|
||||||
}
|
|
||||||
$database->updateoldrank($session->uid, $oldrank);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,7 +171,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function procRankArray() {
|
public function procRankArray() {
|
||||||
global $database, $multisort;
|
global $database, $multisort;
|
||||||
//$array = $database->getRanking();
|
//$array = $database->getRanking();
|
||||||
$holder = array();
|
$holder = array();
|
||||||
|
|||||||
@@ -27,12 +27,12 @@ include ("Database.php");
|
|||||||
include ("Mailer.php");
|
include ("Mailer.php");
|
||||||
include ("Form.php");
|
include ("Form.php");
|
||||||
include ("Generator.php");
|
include ("Generator.php");
|
||||||
|
include ("Multisort.php");
|
||||||
|
include ("Ranking.php");
|
||||||
include ("Automation.php");
|
include ("Automation.php");
|
||||||
include ("Lang/" . LANG . ".php");
|
include ("Lang/" . LANG . ".php");
|
||||||
include ("Logging.php");
|
include ("Logging.php");
|
||||||
include ("Message.php");
|
include ("Message.php");
|
||||||
include ("Multisort.php");
|
|
||||||
include ("Ranking.php");
|
|
||||||
include ("Alliance.php");
|
include ("Alliance.php");
|
||||||
include ("Profile.php");
|
include ("Profile.php");
|
||||||
|
|
||||||
|
|||||||
@@ -161,20 +161,13 @@ class Units {
|
|||||||
$form->addError("error","Player is under beginners protection. You can't attack him");
|
$form->addError("error","Player is under beginners protection. You can't attack him");
|
||||||
}
|
}
|
||||||
|
|
||||||
//check if banned:
|
//check if banned/admin:
|
||||||
$villageOwner = $database->getVillageField($id,'owner');
|
$villageOwner = $database->getVillageField($id,'owner');
|
||||||
$userAccess = $database->getUserField($villageOwner,'access',0);
|
$userAccess = $database->getUserField($villageOwner,'access',0);
|
||||||
if($userAccess == '0'){
|
if($userAccess == '0' or $userAccess == '8' or $userAccess == '9'){
|
||||||
$form->addError("error","Player is Banned. You can't attack him");
|
$form->addError("error","Player is Banned. You can't attack him");
|
||||||
//break;
|
//break;
|
||||||
}
|
}
|
||||||
//check if admin:
|
|
||||||
$villageOwner = $database->getVillageField($id,'owner');
|
|
||||||
$userAccess = $database->getUserField($villageOwner,'access',0);
|
|
||||||
if($userAccess == '9'){
|
|
||||||
$form->addError("error","Player is Admin. You can't attack him");
|
|
||||||
//break;
|
|
||||||
}
|
|
||||||
|
|
||||||
//check if attacking same village that units are in
|
//check if attacking same village that units are in
|
||||||
if($id == $village->wid){
|
if($id == $village->wid){
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ if(!$session->goldclub) {
|
|||||||
<?php include "Templates/goldClub/farmlist.tpl"; ?>
|
<?php include "Templates/goldClub/farmlist.tpl"; ?>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
<?php if($hideevasion == 0){ ?>
|
||||||
<table cellpadding="1" cellspacing="1">
|
<table cellpadding="1" cellspacing="1">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -72,5 +73,6 @@ if(!$session->goldclub) {
|
|||||||
<div class="clear"></div><p><input type="image" value="ok" name="s1" id="btn_ok" class="dynamic_img" src="img/x.gif" tabindex="8" alt="OK" <?php if(!$market->merchantAvail()) { echo "DISABLED"; }?>/></p></form>
|
<div class="clear"></div><p><input type="image" value="ok" name="s1" id="btn_ok" class="dynamic_img" src="img/x.gif" tabindex="8" alt="OK" <?php if(!$market->merchantAvail()) { echo "DISABLED"; }?>/></p></form>
|
||||||
</tr>
|
</tr>
|
||||||
</form>
|
</form>
|
||||||
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
@@ -23,6 +23,8 @@ else if($_POST['dname']!=""){
|
|||||||
$getwref = $database->getVillageByName($_POST['dname']);
|
$getwref = $database->getVillageByName($_POST['dname']);
|
||||||
$checkexist = $database->checkVilExist($getwref);
|
$checkexist = $database->checkVilExist($getwref);
|
||||||
}
|
}
|
||||||
|
$villageOwner = $database->getVillageField($getwref,'owner');
|
||||||
|
$userAccess = $database->getUserField($villageOwner,'access',0);
|
||||||
$maxcarry = $market->maxcarry;
|
$maxcarry = $market->maxcarry;
|
||||||
$maxcarry *= $market->merchantAvail();
|
$maxcarry *= $market->merchantAvail();
|
||||||
if(isset($_POST['ft'])=='check' && $allres!=0 && $allres <= $maxcarry && ($_POST['x']!="" && $_POST['y']!="" or $_POST['dname']!="") && $checkexist){
|
if(isset($_POST['ft'])=='check' && $allres!=0 && $allres <= $maxcarry && ($_POST['x']!="" && $_POST['y']!="" or $_POST['dname']!="") && $checkexist){
|
||||||
@@ -209,6 +211,9 @@ if(isset($_POST['ft'])=='check'){
|
|||||||
|
|
||||||
if(!$checkexist){
|
if(!$checkexist){
|
||||||
$error = '<span class="error"><b>No Coordinates selected</b></span>';
|
$error = '<span class="error"><b>No Coordinates selected</b></span>';
|
||||||
|
}elseif($userAccess == '0' or $userAccess == '8' or $userAccess == '9'){
|
||||||
|
$error = '<span class="error"><b>Player is Banned. You cannot send resources to him.</b></span>';
|
||||||
|
}
|
||||||
}elseif($_POST['r1']==0 && $_POST['r2']==0 && $_POST['r3']==0 && $_POST['r4']==0){
|
}elseif($_POST['r1']==0 && $_POST['r2']==0 && $_POST['r3']==0 && $_POST['r4']==0){
|
||||||
$error = '<span class="error"><b>Resources not selected.</b></span>';
|
$error = '<span class="error"><b>Resources not selected.</b></span>';
|
||||||
}elseif(!$_POST['x'] && !$_POST['y'] && !$_POST['dname']){
|
}elseif(!$_POST['x'] && !$_POST['y'] && !$_POST['dname']){
|
||||||
|
|||||||
@@ -504,12 +504,8 @@ if($type==18 or $type==19 or $type==20 or $type==21){
|
|||||||
$data1 = mysql_fetch_assoc($query1);
|
$data1 = mysql_fetch_assoc($query1);
|
||||||
$query2 = mysql_query('SELECT * FROM `' . TB_PREFIX . 'users` WHERE `id` = ' . $data1['owner']);
|
$query2 = mysql_query('SELECT * FROM `' . TB_PREFIX . 'users` WHERE `id` = ' . $data1['owner']);
|
||||||
$data2 = mysql_fetch_assoc($query2);
|
$data2 = mysql_fetch_assoc($query2);
|
||||||
if($data2['access']=='0') {
|
if($data2['access']=='0' or $data2['access']=='8' or $data2['access']=='9') {
|
||||||
echo "» Send troops. (Player is banned)";
|
echo "» Send troops. (Player is banned)";
|
||||||
} else if($data2['access']=='8') {
|
|
||||||
echo "» Send Troops. (Moderator)";
|
|
||||||
} else if($data2['access']=='9') {
|
|
||||||
echo "» Send Troops. (Administrator)";
|
|
||||||
} else if($data2['protect'] < time()) {
|
} else if($data2['protect'] < time()) {
|
||||||
echo $village->resarray['f39']? "<a href=\"a2b.php?z=".$_GET['d']."\">» Send troops." : "» Send troops. (build a rally point)";
|
echo $village->resarray['f39']? "<a href=\"a2b.php?z=".$_GET['d']."\">» Send troops." : "» Send troops. (build a rally point)";
|
||||||
} else {
|
} else {
|
||||||
@@ -517,11 +513,18 @@ if($type==18 or $type==19 or $type==20 or $type==21){
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="none"><?php echo $building->getTypeLevel(17)? "<a href=\"build.php?z=".$_GET['d']."&id=" . $building->getTypeField(17) . "\">» Send merchant(s)." : "» Send merchant(s). (build marketplace)"; ?></td>
|
<td class="none">
|
||||||
|
<?php
|
||||||
|
if($data2['access']=='0' or $data2['access']=='8' or $data2['access']=='9') {
|
||||||
|
echo "» Send merchant(s). (banned)";
|
||||||
|
} else {
|
||||||
|
echo $building->getTypeLevel(17)? "<a href=\"build.php?z=".$_GET['d']."&id=" . $building->getTypeField(17) . "\">» Send merchant(s)." : "» Send merchant(s). (build marketplace)";
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
@@ -136,7 +136,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>No.</td>
|
<td>No.</td>
|
||||||
<td>Alliance</td>
|
<td>Alliance</td>
|
||||||
<td>Ranks</td>
|
<td>Population</td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|||||||
@@ -13,6 +13,9 @@
|
|||||||
$t1 = $row['t1'];$t2 = $row['t2'];$t3 = $row['t3'];$t4 = $row['t4'];$t5 = $row['t5'];
|
$t1 = $row['t1'];$t2 = $row['t2'];$t3 = $row['t3'];$t4 = $row['t4'];$t5 = $row['t5'];
|
||||||
$t6 = $row['t6'];$t7 = $row['t7'];$t8 = $row['t8'];$t9 = $row['t9'];$t10 = $row['t10'];
|
$t6 = $row['t6'];$t7 = $row['t7'];$t8 = $row['t8'];$t9 = $row['t9'];$t10 = $row['t10'];
|
||||||
$t11 = 0;
|
$t11 = 0;
|
||||||
|
$villageOwner = $database->getVillageField($wref,'owner');
|
||||||
|
$userAccess = $database->getUserField($villageOwner,'access',0);
|
||||||
|
if($userAccess != '0' && $userAccess != '8' && $userAccess != '9'){
|
||||||
if($tribe == 1){ $uname = "u"; } elseif($tribe == 2){ $uname = "u1"; } elseif($tribe == 3){ $uname = "u2"; }elseif($tribe == 4){ $uname = "u3"; }else {$uname = "u4"; }
|
if($tribe == 1){ $uname = "u"; } elseif($tribe == 2){ $uname = "u1"; } elseif($tribe == 3){ $uname = "u2"; }elseif($tribe == 4){ $uname = "u3"; }else {$uname = "u4"; }
|
||||||
if($tribe == 1){ $uname1 = "u1"; } elseif($tribe == 2){ $uname1 = "u2"; } elseif($tribe == 3){ $uname1 = "u3"; }elseif($tribe == 4){ $uname1 = "u4"; }else {$uname1 = "u5"; }
|
if($tribe == 1){ $uname1 = "u1"; } elseif($tribe == 2){ $uname1 = "u2"; } elseif($tribe == 3){ $uname1 = "u3"; }elseif($tribe == 4){ $uname1 = "u4"; }else {$uname1 = "u5"; }
|
||||||
if($tribe == 1){ $uname2 = ""; } elseif($tribe == 2){ $uname2 = "1"; } elseif($tribe == 3){ $uname2 = "2"; }elseif($tribe == 4){ $uname2 = "3"; }else {$uname2 = "4"; }
|
if($tribe == 1){ $uname2 = ""; } elseif($tribe == 2){ $uname2 = "1"; } elseif($tribe == 3){ $uname2 = "2"; }elseif($tribe == 4){ $uname2 = "3"; }else {$uname2 = "4"; }
|
||||||
@@ -79,5 +82,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
header("Location: build.php?id=39&t=99");
|
header("Location: build.php?id=39&t=99");
|
||||||
?>
|
?>
|
||||||
@@ -360,9 +360,12 @@ $NUM1++;
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if($create == 1){
|
<?php if($create == 1){
|
||||||
|
$hideevasion = 1;
|
||||||
include("Templates/goldClub/farmlist_add.tpl");
|
include("Templates/goldClub/farmlist_add.tpl");
|
||||||
}else if($create == 2){
|
}else if($create == 2){
|
||||||
|
$hideevasion = 1;
|
||||||
include("Templates/goldClub/farmlist_addraid.tpl");
|
include("Templates/goldClub/farmlist_addraid.tpl");
|
||||||
}else if($create == 3){
|
}else if($create == 3){
|
||||||
|
$hideevasion = 1;
|
||||||
include("Templates/goldClub/farmlist_editraid.tpl");
|
include("Templates/goldClub/farmlist_editraid.tpl");
|
||||||
}
|
}
|
||||||
@@ -13,8 +13,6 @@ $WrefY = $WrefCoor['y'];
|
|||||||
$type = $database->getVillageType2($Wref);
|
$type = $database->getVillageType2($Wref);
|
||||||
$oasistype = $type['oasistype'];
|
$oasistype = $type['oasistype'];
|
||||||
$vdata = $database->getVillage($Wref);
|
$vdata = $database->getVillage($Wref);
|
||||||
$villageOwner = $database->getVillageField($Wref,'owner');
|
|
||||||
$userAccess = $database->getUserField($villageOwner,'access',0);
|
|
||||||
}elseif($_POST['x']!="" && $_POST['y']!="" && is_numeric($_POST['x']) && is_numeric($_POST['y'])){
|
}elseif($_POST['x']!="" && $_POST['y']!="" && is_numeric($_POST['x']) && is_numeric($_POST['y'])){
|
||||||
$Wref = $database->getVilWref($_POST['x'], $_POST['y']);
|
$Wref = $database->getVilWref($_POST['x'], $_POST['y']);
|
||||||
$WrefX = $_POST['x'];
|
$WrefX = $_POST['x'];
|
||||||
@@ -22,15 +20,11 @@ $WrefY = $_POST['y'];
|
|||||||
$type = $database->getVillageType2($Wref);
|
$type = $database->getVillageType2($Wref);
|
||||||
$oasistype = $type['oasistype'];
|
$oasistype = $type['oasistype'];
|
||||||
$vdata = $database->getVillage($Wref);
|
$vdata = $database->getVillage($Wref);
|
||||||
$villageOwner = $database->getVillageField($Wref,'owner');
|
|
||||||
$userAccess = $database->getUserField($villageOwner,'access',0);
|
|
||||||
}
|
}
|
||||||
if($_POST['x']=="" && $_POST['y']=="" && $_POST['target_id'] == ""){
|
if($_POST['x']=="" && $_POST['y']=="" && $_POST['target_id'] == ""){
|
||||||
$errormsg .= "Enter coordinates.";
|
$errormsg .= "Enter coordinates.";
|
||||||
}elseif(($_POST['x']=="" || $_POST['y']=="") && $_POST['target_id'] == ""){
|
}elseif(($_POST['x']=="" || $_POST['y']=="") && $_POST['target_id'] == ""){
|
||||||
$errormsg .= "Enter the correct coordinates.";
|
$errormsg .= "Enter the correct coordinates.";
|
||||||
}elseif($userAccess == '9'){
|
|
||||||
$errormsg .= "Player is Admin. You can't attack him.";
|
|
||||||
}elseif($oasistype == 0 && $vdata == 0){
|
}elseif($oasistype == 0 && $vdata == 0){
|
||||||
$errormsg .= "There is no village on those coordinates.";
|
$errormsg .= "There is no village on those coordinates.";
|
||||||
}elseif($troops == 0){
|
}elseif($troops == 0){
|
||||||
|
|||||||
@@ -16,8 +16,6 @@ $WrefY = $WrefCoor['y'];
|
|||||||
$type = $database->getVillageType2($Wref);
|
$type = $database->getVillageType2($Wref);
|
||||||
$oasistype = $type['oasistype'];
|
$oasistype = $type['oasistype'];
|
||||||
$vdata = $database->getVillage($Wref);
|
$vdata = $database->getVillage($Wref);
|
||||||
$villageOwner = $database->getVillageField($Wref,'owner');
|
|
||||||
$userAccess = $database->getUserField($villageOwner,'access',0);
|
|
||||||
}elseif($_POST['x']!="" && $_POST['y']!="" && is_numeric($_POST['x']) && is_numeric($_POST['y'])){
|
}elseif($_POST['x']!="" && $_POST['y']!="" && is_numeric($_POST['x']) && is_numeric($_POST['y'])){
|
||||||
$Wref = $database->getVilWref($_POST['x'], $_POST['y']);
|
$Wref = $database->getVilWref($_POST['x'], $_POST['y']);
|
||||||
$WrefX = $_POST['x'];
|
$WrefX = $_POST['x'];
|
||||||
@@ -25,8 +23,6 @@ $WrefY = $_POST['y'];
|
|||||||
$type = $database->getVillageType2($Wref);
|
$type = $database->getVillageType2($Wref);
|
||||||
$oasistype = $type['oasistype'];
|
$oasistype = $type['oasistype'];
|
||||||
$vdata = $database->getVillage($Wref);
|
$vdata = $database->getVillage($Wref);
|
||||||
$villageOwner = $database->getVillageField($Wref,'owner');
|
|
||||||
$userAccess = $database->getUserField($villageOwner,'access',0);
|
|
||||||
}
|
}
|
||||||
$troops = "".$_POST['t1']."+".$_POST['t2']."+".$_POST['t3']."+".$_POST['t4']."+".$_POST['t5']."+".$_POST['t6']."+".$_POST['t7']."+".$_POST['t8']."+".$_POST['t9']."+".$_POST['t10']."";
|
$troops = "".$_POST['t1']."+".$_POST['t2']."+".$_POST['t3']."+".$_POST['t4']."+".$_POST['t5']."+".$_POST['t6']."+".$_POST['t7']."+".$_POST['t8']."+".$_POST['t9']."+".$_POST['t10']."";
|
||||||
|
|
||||||
@@ -34,8 +30,6 @@ $troops = "".$_POST['t1']."+".$_POST['t2']."+".$_POST['t3']."+".$_POST['t4']."+"
|
|||||||
$errormsg .= "Enter coordinates.";
|
$errormsg .= "Enter coordinates.";
|
||||||
}elseif(($_POST['x']=="" || $_POST['y']=="") && $_POST['target_id'] == ""){
|
}elseif(($_POST['x']=="" || $_POST['y']=="") && $_POST['target_id'] == ""){
|
||||||
$errormsg .= "Enter the correct coordinates.";
|
$errormsg .= "Enter the correct coordinates.";
|
||||||
}elseif($userAccess == '9'){
|
|
||||||
$errormsg .= "Player is Admin. You can't attack him.";
|
|
||||||
}elseif($oasistype == 0 && $vdata == 0){
|
}elseif($oasistype == 0 && $vdata == 0){
|
||||||
$errormsg .= "There is no village on those coordinates.";
|
$errormsg .= "There is no village on those coordinates.";
|
||||||
}elseif($troops == 0){
|
}elseif($troops == 0){
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%allimedal` (
|
|||||||
`week` int(11) NOT NULL,
|
`week` int(11) NOT NULL,
|
||||||
`points` bigint(255) NOT NULL,
|
`points` bigint(255) NOT NULL,
|
||||||
`img` varchar(255) NOT NULL,
|
`img` varchar(255) NOT NULL,
|
||||||
|
`del` tinyint(1) NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
@@ -935,6 +936,7 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%medal` (
|
|||||||
`week` int(10) unsigned NOT NULL,
|
`week` int(10) unsigned NOT NULL,
|
||||||
`points` varchar(15) NOT NULL,
|
`points` varchar(15) NOT NULL,
|
||||||
`img` varchar(10) NOT NULL,
|
`img` varchar(10) NOT NULL,
|
||||||
|
`del` tinyint(1) unsigned NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
|
|||||||
@@ -1,273 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
if(isset($_GET['c']) && $_GET['c'] == 1) {
|
|
||||||
echo "<div class=\"headline\"><span class=\"f10 c5\">Error creating constant.php check cmod.</span></div><br>";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<form action="process.php" method="post" id="dataform">
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">SERVER RELATED</span>
|
|
||||||
<table><tr>
|
|
||||||
<td><span class="f9 c6">Server name:</span></td><td width="140"><input type="text" name="servername" id="servername" value="TravianZ"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Server speed:</span></td><td><input name="speed" type="text" id="speed" value="1" size="2"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Troop speed:</span></td><td width="140"><input type="text" name="incspeed" id="incspeed" value="1" size="2"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Evasion speed:</span></td><td><input name="evasionspeed" type="text" id="evasionspeed" value="1" size="2"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Trader capacity (1 = 1x...):</span></td><td width="140"><input type="text" name="tradercap" id="tradercap" value="1" size="2"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">World size:</span></td><td>
|
|
||||||
<select name="wmax">
|
|
||||||
<option value="10">10x10</option>
|
|
||||||
<option value="25">25x25</option>
|
|
||||||
<option value="50">50x50</option>
|
|
||||||
<option value="100" selected="selected">100x100</option>
|
|
||||||
<option value="150">150x150</option>
|
|
||||||
<option value="200">200x200</option>
|
|
||||||
<option value="250">250x250</option>
|
|
||||||
<option value="300">300x300</option>
|
|
||||||
<option value="350">350x350</option>
|
|
||||||
<option value="400">400x400</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Register Open:</span></td><td>
|
|
||||||
<select name="reg_open">
|
|
||||||
<option value="True" selected="selected">True</option>
|
|
||||||
<option value="False">False</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Server:</span></td><td><input name="server" type="text" id="homepage" value="http://<?php echo $_SERVER['HTTP_HOST']; ?>/"></td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Domain:</span></td><td><input name="domain" type="text" id="homepage" value="http://<?php echo $_SERVER['HTTP_HOST']; ?>/"></td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Homepage:</span></td><td><input name="homepage" type="text" id="homepage" value="http://<?php echo $_SERVER['HTTP_HOST']; ?>/"></td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Language:</span></td><td>
|
|
||||||
<select name="lang">
|
|
||||||
<option value="en" selected="selected">English</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Beginners protection length:</span></td><td>
|
|
||||||
<select name="beginner">
|
|
||||||
<option value="0">None (0 hours)</option>
|
|
||||||
<option value="21600">6 hours</option>
|
|
||||||
<option value="43200" selected="selected">12 hours</option>
|
|
||||||
<option value="86400">24 hours</option>
|
|
||||||
<option value="129600">36 hours</option>
|
|
||||||
<option value="172800">48 hours</option>
|
|
||||||
<option value="259200">72 hours</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Plus account length:</span></td><td>
|
|
||||||
<select name="plus_time">
|
|
||||||
<option value="(3600*12)">12 hours</option>
|
|
||||||
<option value="(3600*24)">1 day</option>
|
|
||||||
<option value="(3600*24*2)">2 days</option>
|
|
||||||
<option value="(3600*24*3)">3 days</option>
|
|
||||||
<option value="(3600*24*4)">4 days</option>
|
|
||||||
<option value="(3600*24*5)">5 days</option>
|
|
||||||
<option value="(3600*24*6)">6 days</option>
|
|
||||||
<option value="(3600*24*7)" selected="selected">7 days</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">+25% production length:</span></td><td>
|
|
||||||
<select name="plus_production">
|
|
||||||
<option value="(3600*12)">12 hours</option>
|
|
||||||
<option value="(3600*24)">1 day</option>
|
|
||||||
<option value="(3600*24*2)">2 days</option>
|
|
||||||
<option value="(3600*24*3)">3 days</option>
|
|
||||||
<option value="(3600*24*4)">4 days</option>
|
|
||||||
<option value="(3600*24*5)">5 days</option>
|
|
||||||
<option value="(3600*24*6)">6 days</option>
|
|
||||||
<option value="(3600*24*7)" selected="selected">7 days</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Storage Multipler:</span></td><td width="140"><input type="text" name="storage_multiplier" id="storage_multiplier" value="1"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Tourn Threshold:</span></td><td width="140"><input type="text" name="ts_threshold" id="ts_threshold" value="20"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Great Workshop:</span></td><td>
|
|
||||||
<select name="great_wks">
|
|
||||||
<option value="True">True</option>
|
|
||||||
<option value="False" selected="selected">False</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">ww:</span></td><td>
|
|
||||||
<select name="ww">
|
|
||||||
<option value="True">True</option>
|
|
||||||
<option value="False" selected="selected">False</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
<td><span class="f9 c6">Peace system:</span></td><td>
|
|
||||||
<select name="peace">
|
|
||||||
<option value="0" selected="selected">None</option>
|
|
||||||
<option value="1">Normal</option>
|
|
||||||
<option value="2">Christmas</option>
|
|
||||||
<option value="3">New Year</option>
|
|
||||||
<option value="4">Easter</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">ADMIN ACCOUNT</span>
|
|
||||||
<table>
|
|
||||||
<tr><td><span class="f9 c6">Admin name:</span></td><td><input type="text" name="aname" id="aname" value=""></td></tr>
|
|
||||||
<tr><td><span class="f9 c6">Admin email:</span></td><td><input type="text" name="aemail" id="aemail" value=""></td></tr>
|
|
||||||
|
|
||||||
<td><span class="f9 c6">Show admin in stats:</span></td><td>
|
|
||||||
<select name="admin_rank">
|
|
||||||
<option value="True">True</option>
|
|
||||||
<option value="False" selected="selected">False</option>
|
|
||||||
</select>
|
|
||||||
</td></tr><tr></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">SQL RELATED</span>
|
|
||||||
<table><tr>
|
|
||||||
<td><span class="f9 c6">Hostname:</span></td><td><input name="sserver" type="text" id="sserver" value="localhost"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Username:</span></td><td><input name="suser" type="text" id="suser" value=""></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Password:</span></td><td><input type="text" name="spass" id="spass"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">DB name:</span></td><td><input type="text" name="sdb" id="sdb"></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Prefix:</span></td><td><input type="text" name="prefix" id="prefix" value="s1_" size="5"></td></tr>
|
|
||||||
<td><span class="f9 c6">Type:</span></td><td><select name="connectt">
|
|
||||||
<option value="0" selected="selected">MYSQL</option>
|
|
||||||
<option value="1" disabled="disabled">MYSQLi (NOT DONE)</option>
|
|
||||||
</select></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<!-- <LEFT BOX - ADMIN RELATED>
|
|
||||||
|
|
||||||
<span><center><strong>ADMIN RELATED</strong></center></span><br />
|
|
||||||
<span class="f9 c6 cc2">Admin Name:</span><span class="cc3"><input type="text" name="aname" id="aname"></span><br /><br />
|
|
||||||
<span class="f9 c6 cc2">Admin Email:</span><span class="cc3"><input name="aemail" type="text" id="aemail"></span><br /><br />
|
|
||||||
<span class="f9 c6 cc2">Admin rank:</span><span class="cc3" style="position: absolute;right:20%;"><select name="admin_rank">
|
|
||||||
<option value="false">No</option>
|
|
||||||
<option value="true" selected="selected">Yes</option></select></span><br /><br />
|
|
||||||
|
|
||||||
<!-- </LEFT BOX - ADMIN RELATED> -->
|
|
||||||
|
|
||||||
<!-- <RIGHT BOX - GPACK RELATED>
|
|
||||||
|
|
||||||
<span><center><strong>GPACK RELATED</strong></center></span><br />
|
|
||||||
|
|
||||||
|
|
||||||
<span class="f9 c6 c2">GPack:</span><span class="c3"><select name="gpack">
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
<option value="true" disabled="disabled">Yes</option></select></span><br /><br />
|
|
||||||
<span class="f9 c6 c2">GPack Design:</span><span class="c3"><select name="gp_locate">
|
|
||||||
<option value="gpack/travian_default/" selected="selected">Travian Default
|
|
||||||
<option value="gpack/travianx_v1/">TravianX v1 by Dzoki</option></select></span><br /><br />
|
|
||||||
|
|
||||||
-->
|
|
||||||
<!-- </RIGHT BOX - GPACK RELATED> -->
|
|
||||||
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">NEWSBOX OPTIONS</span>
|
|
||||||
<table><tr>
|
|
||||||
<td><span class="f9 c6">Newsbox 1:</span></td><td><select name="box1">
|
|
||||||
<option value="true" selected="selected">Enabled</option>
|
|
||||||
<option value="false">Disabled</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<td><span class="f9 c6">Newsbox 2:</span></td><td><select name="box2">
|
|
||||||
<option value="true" selected="selected">Enabled</option>
|
|
||||||
<option value="false">Disabled</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<td><span class="f9 c6">Newsbox 3:</span></td><td><select name="box3">
|
|
||||||
<option value="true" selected="selected">Enabled</option>
|
|
||||||
<option value="false">Disabled</option>
|
|
||||||
</select></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">LOG RELATED (You should disable them)</span>
|
|
||||||
<table><tr>
|
|
||||||
<td><span class="f9 c6">Log Building:</span></td><td><select name="log_build">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Log Tech:</span></td><td><select name="log_tech">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Log Login:</span></td><td><select name="log_login">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<tr>
|
|
||||||
<td><span class="f9 c6">Log Gold:</span></td><td><select name="log_gold_fin">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<tr> <td><span class="f9 c6">Log Admin:</span></td><td><select name="log_admin">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<tr> <td><span class="f9 c6">Log War:</span></td><td><select name="log_war">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Log Market:</span></td><td><select name="log_market">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Log Illegal:</span></td><td><select name="log_illegal">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Log :</span></td><td><select name="">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">EXTRA OPTIONS</span>
|
|
||||||
<table><tr>
|
|
||||||
<td><span class="f9 c6">Quest:</span></td><td><select name="quest">
|
|
||||||
<option value="true" selected="selected">Yes</option>
|
|
||||||
<option value="false">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Activate:</span></td><td><select name="activate">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">Limit Mailbox:</span></td><td><select name="limit_mailbox">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select> (NOT DONE)</td></tr>
|
|
||||||
<tr><td><span class="f9 c6">Max mails:</span></td><td><input type="text" name="max_mails" id="max_mails" value="30" size="4"> (NOT DONE)</td></tr>
|
|
||||||
<tr>
|
|
||||||
<td><span class="f9 c6">Demolish - lvl required:</span></td><td><select name="demolish">
|
|
||||||
<option value="5">5</option>
|
|
||||||
<option value="10" selected="selected">10 - Default</option>
|
|
||||||
<option value="15">15</option>
|
|
||||||
<option value="20">20</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<tr> <td><span class="f9 c6">Village Expand:</span></td><td><select name="village_expand">
|
|
||||||
<option value="1" selected="selected">Slow</option>
|
|
||||||
<option value="0">Fast</option>
|
|
||||||
</select></td></tr>
|
|
||||||
<tr> <td><span class="f9 c6">Error Reporting:</span></td><td><select name="error">
|
|
||||||
<option value="error_reporting (E_ALL ^ E_NOTICE);" selected="selected">Yes</option>
|
|
||||||
<option value="error_reporting (0);">No</option>
|
|
||||||
</select></td></tr><tr>
|
|
||||||
<td><span class="f9 c6">T4 is Coming screen:</span></td><td><select name="t4_coming">
|
|
||||||
<option value="true">Yes</option>
|
|
||||||
<option value="false" selected="selected">No</option>
|
|
||||||
</select></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
<br />
|
|
||||||
<span class="f10 c">Server Start Settings</span>
|
|
||||||
<table>
|
|
||||||
<tr><td><span class="f9 c6">Start Date:</span></td><td width="140"><input type="text" name="start_date" id="start_date" value="<?php echo date('m/d/Y'); ?>"></td></tr>
|
|
||||||
<tr><td><span class="f9 c6">Start Time:</span></td><td width="140"><input type="text" name="start_time" id="start_time" value="<?php echo date('H:i'); ?>"></td></tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<center>
|
|
||||||
<input type="submit" name="Submit" id="Submit" value="Submit">
|
|
||||||
<input type="hidden" name="subconst" value="1"></center>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// TRAVIANX //
|
|
||||||
// Only for advanced users, do not edit if you dont know what are you doing! //
|
|
||||||
// Made by: Dzoki & Dixie (TravianX) //
|
|
||||||
// - TravianX = Travian Clone Project - //
|
|
||||||
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
if(isset($_GET['c']) && $_GET['c'] == 1) {
|
|
||||||
echo "<div class=\"headline\"><span class=\"f10 c5\">Error importing database. Check configuration.</span></div><br>";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<form action="process.php" method="post" id="dataform">
|
|
||||||
<input type="hidden" name="substruc" value="1">
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">Create SQL Structure</span>
|
|
||||||
<table>
|
|
||||||
<tr><td>Warning: This can take some time. Do not click, just wait till the next page has been loaded!</td></tr>
|
|
||||||
<tr><td><center><input type="submit" name="Submit" id="Submit" value="Create.."></center></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?php
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// TRAVIANX //
|
|
||||||
// Only for advanced users, do not edit if you dont know what are you doing! //
|
|
||||||
// Made by: Dzoki & Dixie (TravianX) //
|
|
||||||
// - TravianX = Travian Clone Project - //
|
|
||||||
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
?>
|
|
||||||
<p>
|
|
||||||
Thanks for installing TravianX.
|
|
||||||
<h4>Please remove/rename the installation folder.</h4>
|
|
||||||
All the files are placed. The database is created, so you can now start playing on your own Travian.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<?php include("../GameEngine/config.php"); ?>
|
|
||||||
<p>
|
|
||||||
<center><font size="4"><a href="<?php echo HOMEPAGE; ?>">> My TravianX homepage <</font></a></center>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?php
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// TRAVIANX //
|
|
||||||
// Only for advanced users, do not edit if you dont know what are you doing! //
|
|
||||||
// Made by: Dzoki & Dixie (TravianX) //
|
|
||||||
// - TravianX = Travian Clone Project - //
|
|
||||||
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
if(isset($_GET['c']) && $_GET['c'] == 1) {
|
|
||||||
echo "<div class=\"headline\"><span class=\"f10 c5\">Error creating wdata. Check configuration or file.</span></div><br>";
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
<form action="process.php" method="post" id="dataform">
|
|
||||||
<input type="hidden" name="subwdata" value="1">
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">Create World Data</span>
|
|
||||||
<table>
|
|
||||||
<tr><td><b>Warning</b>: This can take some time. Do not click, just wait till the next page has been loaded!</td></tr>
|
|
||||||
<tr><td><center><input type="submit" name="Submit" id="Submit" value="Create.."></center></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<h4> Disclaimer</h4>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>Along with the installation/usage of this game, you shall be fully responsible for any legal results that may raised initiated by the owners of any unlicensed content you permit your copy of this game to publish.</li>
|
|
||||||
|
|
||||||
<li>Neither the team that created this script nor the team that customised it to create this distribution/release shall be responsible for any damage done to your computer/server system.</li>
|
|
||||||
|
|
||||||
<li>All code was confirmed to be running correctly by the creation team without any visible security risk they were aware of at the time the released it. Similarly for the customisation team who customised it to create this distribution/release.</li>
|
|
||||||
|
|
||||||
<li>Users are asked to review the code on their own accord and behalf.</li>
|
|
||||||
|
|
||||||
<li>Any customization to the source code are the property of each customisation's author, it is up to each author's discretion whether to share it by including it in free open source distributions such as this one.</li>
|
|
||||||
|
|
||||||
<li><b>You have no rights to edit copyright notices or/and claim this script as your own.</b></li>
|
|
||||||
|
|
||||||
<li>Last but not least, Enjoy.</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
<li><h4>CHMOD:</h4></li>
|
|
||||||
<li>install to 777</li>
|
|
||||||
<li>GameEngine to 777</li>
|
|
||||||
<li><h4>After CHMOD:</h4></li>
|
|
||||||
<li>Delete install folder</li>
|
|
||||||
<li>Change CHMOD GameEngine back to 644 and CHMOD 777: Prevention, Notes</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<div class="lbox">
|
|
||||||
TravianX Team
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<center>
|
|
||||||
<form>
|
|
||||||
<input type="button" name="next" value="Next" onclick="location.href='?s=1'">
|
|
||||||
</form>
|
|
||||||
</center>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
<div class="menu">
|
|
||||||
<?php
|
|
||||||
switch($_GET['s']) {
|
|
||||||
case 0:
|
|
||||||
echo "<li class=\"c2 f9\">Intro</li><li class=\"c1 f9\">Configuration</li><li class=\"c1 f9\">Database</li><li class= \"c1 f9\">Field</li><li class=\"c1 f9\">Multihunter</li><li class=\"c1 f9\">Oasis</li><li class=\"c1 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
echo "<li class=\"c3 f9\">Intro</li><li class=\"c2 f9\">Configuration</li><li class=\"c1 f9\">Database</li><li class= \"c1 f9\">Field</li><li class=\"c1 f9\">Multihunter</li><li class=\"c1 f9\">Oasis</li><li class=\"c1 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
echo "<li class=\"c3 f9\">Intro</li><li class=\"c3 f9\">Configuration</li><li class=\"c2 f9\">Database</li><li class= \"c1 f9\">Field</li><li class=\"c1 f9\">Multihunter</li><li class=\"c1 f9\">Oasis</li><li class=\"c1 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
echo "<li class=\"c3 f9\">Intro</li><li class=\"c3 f9\">Configuration</li><li class=\"c3 f9\">Database</li><li class= \"c2 f9\">Field</li><li class=\"c1 f9\">Multihunter</li><li class=\"c1 f9\">Oasis</li><li class=\"c1 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
echo "<li class=\"c3 f9\">Intro</li><li class=\"c3 f9\">Configuration</li><li class=\"c3 f9\">Database</li><li class= \"c3 f9\">Field</li><li class=\"c2 f9\">Multihunter</li><li class=\"c1 f9\">Oasis</li><li class=\"c1 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
echo "<li class=\"c3 f9\">Intro</li><li class=\"c3 f9\">Configuration</li><li class=\"c3 f9\">Database</li><li class= \"c3 f9\">Field</li><li class=\"c3 f9\">Multihunter</li><li class=\"c2 f9\">Oasis</li><li class=\"c1 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
echo "<li class=\"c3 f9\">Intro</li><li class=\"c3 f9\">Configuration</li><li class=\"c3 f9\">Database</li><li class= \"c3 f9\">Field</li><li class=\"c3 f9\">Multihunter</li><li class=\"c3 f9\">Oasis</li><li class=\"c2 f9\">End</li>";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
?></div>
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
<?php
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// TRAVIANX //
|
|
||||||
// Only for advanced users, do not edit if you dont know what are you doing! //
|
|
||||||
// Made by: Dzoki & Dixie (TravianX) //
|
|
||||||
// - TravianX = Travian Clone Project - //
|
|
||||||
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
rename("include/constant.php","../GameEngine/config.php");
|
|
||||||
?>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<form action="include/multihunter.php" method="post" id="dataform">
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">Create Multihunter account</span>
|
|
||||||
<table>
|
|
||||||
<tr><td>Name:</td><td><input type="text" name="mhpw" id="mhpw" value="Multihunter" disabled="disabled"></td></tr>
|
|
||||||
<tr><td>Password:</td><td><input type="text" name="mhpw" id="mhpw" value=""></td></tr>
|
|
||||||
<tr><td>Note: Rember this password! You need it for the ACP</td><td></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<center>
|
|
||||||
<input type="submit" name="Submit" id="Submit" value="Submit"></center>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
<?
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// TRAVIANX //
|
|
||||||
// Only for advanced users, do not edit if you dont know what are you doing! //
|
|
||||||
// Made by: Dzoki & Dixie (TravianX) //
|
|
||||||
// - TravianX = Travian Clone Project - //
|
|
||||||
// DO NOT REMOVE COPYRIGHT NOTICE! //
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
?>
|
|
||||||
<form action="include/oasis.php" method="post" id="dataform">
|
|
||||||
<p>
|
|
||||||
<span class="f10 c">Populate Oasis</span>
|
|
||||||
<table>
|
|
||||||
<tr><td><b>Warning</b>: This can take some time. Do not click, just wait till the next page has been loaded!</td></tr>
|
|
||||||
<tr><td><center><input type="submit" name="Submit" id="Submit" value="Create.."></center></td></tr>
|
|
||||||
</table>
|
|
||||||
</p>
|
|
||||||
</form>
|
|
||||||
@@ -1,145 +0,0 @@
|
|||||||
<style type="text/css">
|
|
||||||
.menu{
|
|
||||||
margin-left: 23px;
|
|
||||||
margin-top: 50px;
|
|
||||||
}
|
|
||||||
.f18 {
|
|
||||||
font-size: 18pt;
|
|
||||||
}
|
|
||||||
span.cc3 {position: absolute;right:10%}
|
|
||||||
span.cc2 {position: absolute;left:10%}
|
|
||||||
|
|
||||||
div.lbox {width: 280px; padding-left: 29px; padding-bottom: 15px;}
|
|
||||||
div.rbox {width: 196px; padding-left: 10px; padding-bottom: 15px;}
|
|
||||||
div.wholebox {width: 494px; padding-left: 29px; padding-bottom: 15px;}
|
|
||||||
div.wholebox div {float:none;}
|
|
||||||
div.lbox ul, div.rbox ul {margin: 0 0 0 15px; padding: 0 15px 0 0;}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
class IHG_Progressbar {
|
|
||||||
|
|
||||||
protected $bar_id;
|
|
||||||
|
|
||||||
protected $max_ticks;
|
|
||||||
|
|
||||||
protected $ticks;
|
|
||||||
|
|
||||||
protected $label;
|
|
||||||
|
|
||||||
public function __construct($max_ticks, $label = '%d van %d') {
|
|
||||||
$this->bar_id = uniqid('progressbar');
|
|
||||||
$this->label = $label;
|
|
||||||
|
|
||||||
$this->max_ticks = $max_ticks;
|
|
||||||
$this->ticks = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function tick() {
|
|
||||||
$this->ticks++;
|
|
||||||
$this->draw_progress();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function draw() {
|
|
||||||
$this->draw_bar();
|
|
||||||
$this->draw_progress();
|
|
||||||
}
|
|
||||||
|
|
||||||
static public function draw_css() {
|
|
||||||
echo '
|
|
||||||
<style type="text/css">
|
|
||||||
.ihg_progress_bar {
|
|
||||||
display: block;
|
|
||||||
width: 500px;
|
|
||||||
height: 20px;
|
|
||||||
border: 1px solid gray;
|
|
||||||
padding: 1px;
|
|
||||||
|
|
||||||
margin: 3px auto;
|
|
||||||
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ihg_progress_ticks {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
|
|
||||||
background-color: orange;
|
|
||||||
width: 0;
|
|
||||||
height: 20px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ihg_progress_label_a,
|
|
||||||
.ihg_progress_label_b {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
|
|
||||||
width: 500px;
|
|
||||||
height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ihg_progress_label_a {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ihg_progress_label_b {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
';
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function draw_bar() {
|
|
||||||
echo '
|
|
||||||
<div class="ihg_progress_bar">
|
|
||||||
<span class="ihg_progress_label_a" id="' . $this->bar_id . '_label_a"></span>
|
|
||||||
<div class="ihg_progress_ticks" id="' . $this->bar_id . '">
|
|
||||||
<span class="ihg_progress_label_b" id="' . $this->bar_id . '_label_b"></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
';
|
|
||||||
echo '
|
|
||||||
<script type="text/javascript">
|
|
||||||
(function() {
|
|
||||||
var bar = document.getElementById("' . $this->bar_id . '");
|
|
||||||
var label_a = document.getElementById("' . $this->bar_id . '_label_a");
|
|
||||||
var label_b = document.getElementById("' . $this->bar_id . '_label_b");
|
|
||||||
|
|
||||||
window["' . $this->bar_id . '"] = function(width, label) {
|
|
||||||
bar.style.width = width + "%";
|
|
||||||
label_a.innerHTML = label;
|
|
||||||
label_b.innerHTML = label;
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
';
|
|
||||||
|
|
||||||
$this->flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function draw_progress() {
|
|
||||||
|
|
||||||
$width = round($this->ticks / $this->max_ticks * 100, 2);
|
|
||||||
$label = sprintf($this->label, $this->ticks, $this->max_ticks);
|
|
||||||
|
|
||||||
echo '
|
|
||||||
<script type="text/javascript">
|
|
||||||
window["' . $this->bar_id . '"]("' . $width . '", "' . addslashes($label) . '");
|
|
||||||
</script>
|
|
||||||
|
|
||||||
';
|
|
||||||
$this->flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function flush() {
|
|
||||||
while(ob_get_level() > 0) {
|
|
||||||
ob_end_flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
flush();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
+1178
File diff suppressed because it is too large
Load Diff
+1
-4
@@ -524,11 +524,9 @@ Done:<br />
|
|||||||
-Top 10 Alliance Attacker<br />
|
-Top 10 Alliance Attacker<br />
|
||||||
-Top 10 Alliance Defencer<br />
|
-Top 10 Alliance Defencer<br />
|
||||||
-Top 10 Alliance Robbers<br />
|
-Top 10 Alliance Robbers<br />
|
||||||
-Top 10 Alliance Climbers(Rank)<br />
|
-Top 10 Alliance Climbers<br />
|
||||||
-Top 10 Pop Climbers<br />
|
|
||||||
-Top 10 Rank Climbers<br />
|
-Top 10 Rank Climbers<br />
|
||||||
-Bonus: Attacker AND Defender<br />
|
-Bonus: Attacker AND Defender<br />
|
||||||
-Bonus: 3/5/10 times in a row top 3 Pop Climbers<br />
|
|
||||||
-Bonus: 3/5/10 times in a row top 3 Rank Climbers<br />
|
-Bonus: 3/5/10 times in a row top 3 Rank Climbers<br />
|
||||||
-Bonus: 3/5/10 times top 3 Attack<br />
|
-Bonus: 3/5/10 times top 3 Attack<br />
|
||||||
-Bonus: 3/5/10 times top 3 Defence<br />
|
-Bonus: 3/5/10 times top 3 Defence<br />
|
||||||
@@ -536,7 +534,6 @@ Done:<br />
|
|||||||
|
|
||||||
-Bonus: 3/5/10 times in a row top 10 Attack<br />
|
-Bonus: 3/5/10 times in a row top 10 Attack<br />
|
||||||
-Bonus: 3/5/10 times in a row top 10 Defence<br />
|
-Bonus: 3/5/10 times in a row top 10 Defence<br />
|
||||||
-Bonus: 3/5/10 times in a row top 10 Pop Climbers<br />
|
|
||||||
-Bonus: 3/5/10 times in a row top 10 Rank Climbers<br />
|
-Bonus: 3/5/10 times in a row top 10 Rank Climbers<br />
|
||||||
-Bonus: 3/5/10 times in a row top 10 Robber<br />
|
-Bonus: 3/5/10 times in a row top 10 Robber<br />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user