• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

TravianZ - yi12345

Status
Not open for further replies.
Junior Spellweaver
Joined
Feb 25, 2012
Messages
172
Reaction score
21
Yes, problem is with the last fix.
I updated it to and now i have market lvl63.
So i went back 1 build earlier.
 
Last edited:
Initiate Mage
Joined
Apr 21, 2012
Messages
3
Reaction score
1
Is a Big Big Big Error!

Now on github, in building.php finishAll() function something wrong.
one job 40 times to upgrade.

Is last update ww error.

Sorry, I'm a C# developer, is a simple fixed.

Old
Code:
		private function finishAll() {
		global $database,$session,$logging,$village,$bid18,$bid10,$bid11,$technology,$_SESSION;
		if($session->access!=BANNED){
		if($session->gold >= 2){
		foreach($this->buildArray as $jobs) {
		if($jobs['wid']==$village->wid){
		for ($i = 1; $i <= 40; $i++) {
		$wwvillage = $database->getResourceLevel($jobs['wid']);
		if($wwvillage['f99t']!=40 and $wwvillage['f'.$i.'t']!=40){
			$level = $database->getFieldLevel($jobs['wid'],$jobs['field']);
			$level = ($level == -1) ? 0 : $level;
			if($jobs['type'] != 25 AND $jobs['type'] != 26 AND $jobs['type'] != 40) {
			$gold=$database->getUserField($_SESSION['username'],'gold','username');
			$gold-=2;
			$database->updateUserField($_SESSION['username'],'gold',$gold,0);
				$resource = $this->resourceRequired($jobs['field'],$jobs['type']);
				$q = "UPDATE ".TB_PREFIX."fdata set f".$jobs['field']." = f".$jobs['field']." + 1, f".$jobs['field']."t = ".$jobs['type']." where vref = ".$jobs['wid'];
			  	if($database->query($q)) {
					$database->modifyPop($jobs['wid'],$resource['pop'],0);
					$database->addCP($jobs['wid'],$resource['cp']);
					$database->finishDemolition($village->wid);
					$q = "DELETE FROM ".TB_PREFIX."bdata where id = ".$jobs['id'];
					$database->query($q);
					if($jobs['type'] == 18) {
						$owner = $database->getVillageField($jobs['wid'],"owner");
						$max = $bid18[$level]['attri'];
						$q = "UPDATE ".TB_PREFIX."alidata set max = $max where leader = $owner";
						$database->query($q);
					}
					if($jobs['type'] == 10) {
						$max=$database->getVillageField($jobs['wid'],"maxstore");
						if($level=='0' && $this->getTypeLevel(10) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid10[$level]['attri']*STORAGE_MULTIPLIER; 
						$max+=$bid10[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxstore",$max);
					}
					if($jobs['type'] == 11) {
						$max=$database->getVillageField($jobs['wid'],"maxcrop");
						if($level=='0' && $this->getTypeLevel(11) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid11[$level]['attri']*STORAGE_MULTIPLIER;
						$max+=$bid11[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxcrop",$max);
					}
                    if($jobs['type'] == 38) {
						$max=$database->getVillageField($jobs['wid'],"maxstore");
						if($level=='0' && $this->getTypeLevel(38) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid38[$level]['attri']*STORAGE_MULTIPLIER;
						$max+=$bid38[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxstore",$max);
                    }
                    if($jobs['type'] == 39) {
						$max=$database->getVillageField($jobs['wid'],"maxcrop");
						if($level=='0' && $this->getTypeLevel(39) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid39[$level]['attri']*STORAGE_MULTIPLIER;
						$max+=$bid39[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxcrop",$max);
                    }  			
				}
				if(($jobs['field'] >= 19 && ($session->tribe == 1 || ALLOW_ALL_TRIBE)) || (!ALLOW_ALL_TRIBE && $session->tribe != 1)) { $innertimestamp = $jobs['timestamp']; }
			}
		}
		}
		}
		}
		$technology->finishTech();
		$logging->goldFinLog($village->wid);
		$database->modifyGold($session->uid,0,0);
		$stillbuildingarray = $database->getJobs($village->wid);
		if(count($stillbuildingarray) == 1) {
			if($stillbuildingarray[0]['loopcon'] == 1) {
				$q = "UPDATE ".TB_PREFIX."bdata SET loopcon=0,timestamp=".(time()+$stillbuildingarray[0]['timestamp']-$innertimestamp)." WHERE id=".$stillbuildingarray[0]['id'];
				$database->query($q);
			}
		}
		header("Location: ".$session->referrer);
		}
		}else{
		header("Location: banned.php");
		}
	}

Fixed
Code:
private function finishAll() {
		global $database, $session, $logging, $village, $bid18, $bid10, $bid11, $technology, $_SESSION;
		if ($session->access != BANNED) {
			if ($session->gold >= 2) {
				foreach ( $this->buildArray as $jobs ) {
					if ($jobs ['wid'] == $village->wid) {
						$isww = false;
						for($i = 1; $i <= 40; $i ++) {
							$wwvillage = $database->getResourceLevel ( $jobs ['wid'] );
							if ($wwvillage ['f99t'] == 40 and $wwvillage ['f' . $i . 't'] == 40) {
								$isww = true;
								break;
							}
						}
						if($isww) continue;
						$level = $database->getFieldLevel ( $jobs ['wid'], $jobs ['field'] );
						$level = ($level == - 1) ? 0 : $level;
						if ($jobs ['type'] != 25 and $jobs ['type'] != 26 and $jobs ['type'] != 40) {
							$gold = $database->getUserField ( $_SESSION ['username'], 'gold', 'username' );
							$gold -= 2;
							$database->updateUserField ( $_SESSION ['username'], 'gold', $gold, 0 );
							$resource = $this->resourceRequired ( $jobs ['field'], $jobs ['type'] );
							$q = "UPDATE " . TB_PREFIX . "fdata set f" . $jobs ['field'] . " = f" . $jobs ['field'] . " + 1, f" . $jobs ['field'] . "t = " . $jobs ['type'] . " where vref = " . $jobs ['wid'];
							if ($database->query ( $q )) {
								$database->modifyPop ( $jobs ['wid'], $resource ['pop'], 0 );
								$database->addCP ( $jobs ['wid'], $resource ['cp'] );
								$database->finishDemolition ( $village->wid );
								$q = "DELETE FROM " . TB_PREFIX . "bdata where id = " . $jobs ['id'];
								$database->query ( $q );
								if ($jobs ['type'] == 18) {
									$owner = $database->getVillageField ( $jobs ['wid'], "owner" );
									$max = $bid18 [$level] ['attri'];
									$q = "UPDATE " . TB_PREFIX . "alidata set max = $max where leader = $owner";
									$database->query ( $q );
								}
								if ($jobs ['type'] == 10) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxstore" );
									if ($level == '0' && $this->getTypeLevel ( 10 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid10 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid10 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxstore", $max );
								}
								if ($jobs ['type'] == 11) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxcrop" );
									if ($level == '0' && $this->getTypeLevel ( 11 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid11 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid11 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxcrop", $max );
								}
								if ($jobs ['type'] == 38) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxstore" );
									if ($level == '0' && $this->getTypeLevel ( 38 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid38 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid38 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxstore", $max );
								}
								if ($jobs ['type'] == 39) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxcrop" );
									if ($level == '0' && $this->getTypeLevel ( 39 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid39 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid39 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxcrop", $max );
								}
							}
							if (($jobs ['field'] >= 19 && ($session->tribe == 1 || ALLOW_ALL_TRIBE)) || (! ALLOW_ALL_TRIBE && $session->tribe != 1)) {
								$innertimestamp = $jobs ['timestamp'];
							}
						}
					}
				}
				$technology->finishTech ();
				$logging->goldFinLog ( $village->wid );
				$database->modifyGold ( $session->uid, 0, 0 );
				$stillbuildingarray = $database->getJobs ( $village->wid );
				if (count ( $stillbuildingarray ) == 1) {
					if ($stillbuildingarray [0] ['loopcon'] == 1) {
						$q = "UPDATE " . TB_PREFIX . "bdata SET loopcon=0,timestamp=" . (time () + $stillbuildingarray [0] ['timestamp'] - $innertimestamp) . " WHERE id=" . $stillbuildingarray [0] ['id'];
						$database->query ( $q );
					}
				}
				header ( "Location: " . $session->referrer );
			}
		} else {
			header ( "Location: banned.php" );
		}
	}
 
Junior Spellweaver
Joined
Feb 25, 2012
Messages
172
Reaction score
21
clic here: Karma
look this bug

what's happened? :(

Look at config.php
If the time is filled in ??

look if you have like this in your /GameEngine/config.php

PHP:
// ***** Server Start Date / Time
define("START_DATE", "05/01/2012");
define("START_TIME", "07:00");

Greetz
 
Elite Diviner
Joined
Aug 26, 2011
Messages
495
Reaction score
109
Sorry, I'm a C# developer, is a simple fixed.

Old
Code:
		private function finishAll() {
		global $database,$session,$logging,$village,$bid18,$bid10,$bid11,$technology,$_SESSION;
		if($session->access!=BANNED){
		if($session->gold >= 2){
		foreach($this->buildArray as $jobs) {
		if($jobs['wid']==$village->wid){
		for ($i = 1; $i <= 40; $i++) {
		$wwvillage = $database->getResourceLevel($jobs['wid']);
		if($wwvillage['f99t']!=40 and $wwvillage['f'.$i.'t']!=40){
			$level = $database->getFieldLevel($jobs['wid'],$jobs['field']);
			$level = ($level == -1) ? 0 : $level;
			if($jobs['type'] != 25 AND $jobs['type'] != 26 AND $jobs['type'] != 40) {
			$gold=$database->getUserField($_SESSION['username'],'gold','username');
			$gold-=2;
			$database->updateUserField($_SESSION['username'],'gold',$gold,0);
				$resource = $this->resourceRequired($jobs['field'],$jobs['type']);
				$q = "UPDATE ".TB_PREFIX."fdata set f".$jobs['field']." = f".$jobs['field']." + 1, f".$jobs['field']."t = ".$jobs['type']." where vref = ".$jobs['wid'];
			  	if($database->query($q)) {
					$database->modifyPop($jobs['wid'],$resource['pop'],0);
					$database->addCP($jobs['wid'],$resource['cp']);
					$database->finishDemolition($village->wid);
					$q = "DELETE FROM ".TB_PREFIX."bdata where id = ".$jobs['id'];
					$database->query($q);
					if($jobs['type'] == 18) {
						$owner = $database->getVillageField($jobs['wid'],"owner");
						$max = $bid18[$level]['attri'];
						$q = "UPDATE ".TB_PREFIX."alidata set max = $max where leader = $owner";
						$database->query($q);
					}
					if($jobs['type'] == 10) {
						$max=$database->getVillageField($jobs['wid'],"maxstore");
						if($level=='0' && $this->getTypeLevel(10) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid10[$level]['attri']*STORAGE_MULTIPLIER; 
						$max+=$bid10[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxstore",$max);
					}
					if($jobs['type'] == 11) {
						$max=$database->getVillageField($jobs['wid'],"maxcrop");
						if($level=='0' && $this->getTypeLevel(11) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid11[$level]['attri']*STORAGE_MULTIPLIER;
						$max+=$bid11[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxcrop",$max);
					}
                    if($jobs['type'] == 38) {
						$max=$database->getVillageField($jobs['wid'],"maxstore");
						if($level=='0' && $this->getTypeLevel(38) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid38[$level]['attri']*STORAGE_MULTIPLIER;
						$max+=$bid38[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxstore",$max);
                    }
                    if($jobs['type'] == 39) {
						$max=$database->getVillageField($jobs['wid'],"maxcrop");
						if($level=='0' && $this->getTypeLevel(39) != 20){ $max-=STORAGE_BASE; }
						$max-=$bid39[$level]['attri']*STORAGE_MULTIPLIER;
						$max+=$bid39[$level+1]['attri']*STORAGE_MULTIPLIER;
						$database->setVillageField($jobs['wid'],"maxcrop",$max);
                    }  			
				}
				if(($jobs['field'] >= 19 && ($session->tribe == 1 || ALLOW_ALL_TRIBE)) || (!ALLOW_ALL_TRIBE && $session->tribe != 1)) { $innertimestamp = $jobs['timestamp']; }
			}
		}
		}
		}
		}
		$technology->finishTech();
		$logging->goldFinLog($village->wid);
		$database->modifyGold($session->uid,0,0);
		$stillbuildingarray = $database->getJobs($village->wid);
		if(count($stillbuildingarray) == 1) {
			if($stillbuildingarray[0]['loopcon'] == 1) {
				$q = "UPDATE ".TB_PREFIX."bdata SET loopcon=0,timestamp=".(time()+$stillbuildingarray[0]['timestamp']-$innertimestamp)." WHERE id=".$stillbuildingarray[0]['id'];
				$database->query($q);
			}
		}
		header("Location: ".$session->referrer);
		}
		}else{
		header("Location: banned.php");
		}
	}

Fixed
Code:
private function finishAll() {
		global $database, $session, $logging, $village, $bid18, $bid10, $bid11, $technology, $_SESSION;
		if ($session->access != BANNED) {
			if ($session->gold >= 2) {
				foreach ( $this->buildArray as $jobs ) {
					if ($jobs ['wid'] == $village->wid) {
						$isww = false;
						for($i = 1; $i <= 40; $i ++) {
							$wwvillage = $database->getResourceLevel ( $jobs ['wid'] );
							if ($wwvillage ['f99t'] == 40 and $wwvillage ['f' . $i . 't'] == 40) {
								$isww = true;
								break;
							}
						}
						if($isww) continue;
						$level = $database->getFieldLevel ( $jobs ['wid'], $jobs ['field'] );
						$level = ($level == - 1) ? 0 : $level;
						if ($jobs ['type'] != 25 and $jobs ['type'] != 26 and $jobs ['type'] != 40) {
							$gold = $database->getUserField ( $_SESSION ['username'], 'gold', 'username' );
							$gold -= 2;
							$database->updateUserField ( $_SESSION ['username'], 'gold', $gold, 0 );
							$resource = $this->resourceRequired ( $jobs ['field'], $jobs ['type'] );
							$q = "UPDATE " . TB_PREFIX . "fdata set f" . $jobs ['field'] . " = f" . $jobs ['field'] . " + 1, f" . $jobs ['field'] . "t = " . $jobs ['type'] . " where vref = " . $jobs ['wid'];
							if ($database->query ( $q )) {
								$database->modifyPop ( $jobs ['wid'], $resource ['pop'], 0 );
								$database->addCP ( $jobs ['wid'], $resource ['cp'] );
								$database->finishDemolition ( $village->wid );
								$q = "DELETE FROM " . TB_PREFIX . "bdata where id = " . $jobs ['id'];
								$database->query ( $q );
								if ($jobs ['type'] == 18) {
									$owner = $database->getVillageField ( $jobs ['wid'], "owner" );
									$max = $bid18 [$level] ['attri'];
									$q = "UPDATE " . TB_PREFIX . "alidata set max = $max where leader = $owner";
									$database->query ( $q );
								}
								if ($jobs ['type'] == 10) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxstore" );
									if ($level == '0' && $this->getTypeLevel ( 10 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid10 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid10 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxstore", $max );
								}
								if ($jobs ['type'] == 11) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxcrop" );
									if ($level == '0' && $this->getTypeLevel ( 11 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid11 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid11 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxcrop", $max );
								}
								if ($jobs ['type'] == 38) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxstore" );
									if ($level == '0' && $this->getTypeLevel ( 38 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid38 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid38 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxstore", $max );
								}
								if ($jobs ['type'] == 39) {
									$max = $database->getVillageField ( $jobs ['wid'], "maxcrop" );
									if ($level == '0' && $this->getTypeLevel ( 39 ) != 20) {
										$max -= STORAGE_BASE;
									}
									$max -= $bid39 [$level] ['attri'] * STORAGE_MULTIPLIER;
									$max += $bid39 [$level + 1] ['attri'] * STORAGE_MULTIPLIER;
									$database->setVillageField ( $jobs ['wid'], "maxcrop", $max );
								}
							}
							if (($jobs ['field'] >= 19 && ($session->tribe == 1 || ALLOW_ALL_TRIBE)) || (! ALLOW_ALL_TRIBE && $session->tribe != 1)) {
								$innertimestamp = $jobs ['timestamp'];
							}
						}
					}
				}
				$technology->finishTech ();
				$logging->goldFinLog ( $village->wid );
				$database->modifyGold ( $session->uid, 0, 0 );
				$stillbuildingarray = $database->getJobs ( $village->wid );
				if (count ( $stillbuildingarray ) == 1) {
					if ($stillbuildingarray [0] ['loopcon'] == 1) {
						$q = "UPDATE " . TB_PREFIX . "bdata SET loopcon=0,timestamp=" . (time () + $stillbuildingarray [0] ['timestamp'] - $innertimestamp) . " WHERE id=" . $stillbuildingarray [0] ['id'];
						$database->query ( $q );
					}
				}
				header ( "Location: " . $session->referrer );
			}
		} else {
			header ( "Location: banned.php" );
		}
	}

i fix it in my version and uploaded yesterday.
 
Junior Spellweaver
Joined
Dec 16, 2011
Messages
122
Reaction score
46
I have a question, is the double troops, and the 429484848349934848 bugs fixed in this version ? i have tested it, may updtes in it and lokks great. But ii just want to make sure if these bugs are fixed or not.

Thanks,
 
Newbie Spellweaver
Joined
May 7, 2012
Messages
14
Reaction score
0
when I can make troops in Barracks

when I make up my max in barracks

my state:

Barracks level 10

Name Quantity Max
Legionnaire Legionnaire (Available: 0)
Wood120|Clay100|Iron150|Crop30|Crop consumption1|Duration0:10:20|NPC trade()
Praetorian Praetorian (Available: 0)
Wood100|Clay130|Iron160|Crop70|Crop consumption1|Duration0:11:22|NPC trade()
Imperian Imperian (Available: 0)
Wood150|Clay160|Iron210|Crop80|Crop consumption1|Duration0:12:24|NPC trade()


wood 27367/45700 Clay 18969/45700 Iron 29451/45700 Crop 7677/25900 Crop consumption 257/526
Remaining gold 24810 Gold

Lumber: 258 per hour
Clay: 189 per hour
Iron: 158 per hour
Crop: 323 per hour

I think your script not work in troop part
 
Newbie Spellweaver
Joined
May 7, 2012
Messages
14
Reaction score
0
for warehouse can make new warehouse build but can not make troops yet

when?

in barrack or Stable and Max tab i have 0 and can not make soldier or...
when can i make troops?
my Barracks level is 10
and resource is full
and Stable Level is 11

ok I add in technology.php

$woodcalc = floor($res['wood'] / ($unitarray['wood'] * ($great?3:1)));
$claycalc = floor($res['clay'] / ($unitarray['clay'] * ($great?3:1)));
$ironcalc = floor($res['iron'] / ($unitarray['iron'] * ($great?3:1)));
$cropcalc = floor($res['crop'] / ($unitarray['crop'] * ($great?3:1)));
$popcalc = floor($village->getProd("crop")/$unitarray['pop']);
return min($woodcalc,$claycalc,$ironcalc,$cropcalc);

and fixed troops
thanks from your no help
 
Newbie Spellweaver
Joined
May 1, 2012
Messages
12
Reaction score
0
Nope.
Yesterday i had got a teuton with over de 4 million settlers.
 
Newbie Spellweaver
Joined
Mar 20, 2011
Messages
88
Reaction score
1
Bug in newest release. At quest 4, after filling the rank, it keep loading and loading. This bug didn't happen in older realease. Please check & fix it. Thanks
 
Last edited:
Newbie Spellweaver
Joined
Apr 8, 2012
Messages
25
Reaction score
0
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/a2553889/public_html/GameEngine/Automation.php on line 53

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/a2553889/public_html/GameEngine/Automation.php on line 51
 
Newbie Spellweaver
Joined
May 1, 2012
Messages
12
Reaction score
0
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/a2553889/public_html/GameEngine/Automation.php on line 53

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/a2553889/public_html/GameEngine/Automation.php on line 51

Same problem, take the automation file of one version earlier. Works quite good.
 
Junior Spellweaver
Joined
Feb 25, 2012
Messages
172
Reaction score
21
I have a problem with the option to put ww buildingplans and WW on the map.
If I go to admin and I click on the ww buildingplans of WW, than the destination is wrong.
I tried to fix it, but what i do, it doesn't work.

/admin/templates/natarend.tpl

There is the file ../GameEngine/Admin/Mods/natarend.php

The file and directory is good, but I go to /GameEngine/Admin/Mods/Install ???

Any fix Yi12345
 
Newbie Spellweaver
Joined
Mar 20, 2011
Messages
88
Reaction score
1
Bug in newest release. At quest 4, after filling the rank, it keep loading and loading. This bug didn't happen in older realease. Please check & fix it. Thanks

Sorry, but any fix for this :|
You can test in HERE
no validate email or can try with account: abc pass: 123456
 
Newbie Spellweaver
Joined
Apr 12, 2012
Messages
8
Reaction score
0
The new file is now exacerbated for admin, but yi1234 version better than the current version,

sorry my bad english
 
Last edited:
Skilled Illusionist
Joined
Sep 5, 2011
Messages
360
Reaction score
14
yi12345

Your version is spectacular and almost every day or has seen updates but these latest updates and patches when I install the server is too slow is too slow to think and not moving.

you can help or know why

Hugs and great work
 
Status
Not open for further replies.
Back
Top