Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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