• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Disable Server selection

Manimecker

New Member
Joined
May 6, 2010
Messages
52
Reaction score
0
Hello, I have a problem, when I create a new player, my acc give me the choice to pick any world between "Server 1" and "Server 2".

I want to disable this feature, for just Server 1.

Thanks.

Using:
TFS 0.3.6 Crying Damson and Geisor 0.3.6 on MySQL.
 
Last edited:
enter the folder xampp \ htdocs \ config Open config.php
And in first line look this:

<?PHP
$config['site']['worlds'] = array(0 => 'Server Name', 1 => 'Server Name 1', 2 => 'Server Name 2');

And

Change for it:

<?PHP
$config['site']['worlds'] = array(0 => 'YOU SERVER NAME HERE');
 
Back
Top