• 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.

TravianX v6 - End Game Screen!!

Status
Not open for further replies.
Elite Diviner
Joined
Aug 26, 2011
Messages
495
Reaction score
109
ban system is not 100%.....for upgrading resource fields works fine,and the existing buildings works fine too...but when you try to build a new building it work to build

thank you on the info, I will try to fix.
tell me if you found more problems.
 
Newbie Spellweaver
Joined
Mar 28, 2012
Messages
50
Reaction score
16
my mod disable / enable End Game Screen
change in file
a2b.php
allianz.php
nachirichten.php
plus.php
spieler.php


from
Code:
$automation->isWinner();
to

Code:
if (WinnerS == 1) { $automation->isWinner(); }

-------------
GameEngine/config.php
add

Code:
// ***** WW Winner System End Game Screen
// true = enabled
// false = disabled
define("WinnerS",false);

------------
Templates/Admin/config.tpl
find
Code:
<tr>
	<td>World Wonder - Statistics</td>
	<td><?php 
	if(WW == true) {
		echo "<b><font color='Green'>Enabled</font></b>";
	}
	else if(WW == false) {
		echo "<b><font color='Red'>Disabled</font></b>";
	} ?>
	</td>
</tr>

change to

Code:
<tr>

        <td>World Wonder - Statistics</td>

        <td><?php 
                if(WW == true) {
                echo "<b><font color='Green'>Enabled</font></b>";
                }
                else if(WW == false) {
                echo "<b><font color='Red'>Disabled</font></b>";
                } ?></td> 
             
		
    </tr>
	<td>WW Winner System End Game Screen</td>
	<td><?php 
                if(WinnerS == true) {
                echo "<b><font color='Green'>Enabled</font></b>";
                }
                else if(WinnerS == false) {
                echo "<b><font color='Red'>Disabled</font></b>";
                } ?></td> 

    </tr>
 
Joined
Jun 20, 2011
Messages
582
Reaction score
182
yi12345,on official travian when you are banned you can write messages and when end screen appears you can write messages too...and take a look on lly attacks on defend(make 2 users and attack)..inally attacks on deffend section will appear some errors like:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\wamp\www\GameEngine\Database\db_MYSQL.php on line 985

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\wamp\www\GameEngine\Database\db_MYSQL.php on line 985
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's village'' at line 1
 
Status
Not open for further replies.
Back
Top