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

[ModernAAC] Question Multi-World

president vankk

Web Developer & AuraOT Owner
Joined
Jul 10, 2009
Messages
5,719
Solutions
9
Reaction score
339
Hello OTLand.net


I wonder if there is like putting two worlds

with map different



exemple:

RL Map - World 1
EVO EDIT - World 2



there how to do this?
 
Do you mean in modern acc or both modern acc and Tibia Server?

For modern acc, in config.php:
Code:
/*ID and names of worlds*/
$config['worlds'] = array(0=>"Razork", 1=>"Gogak");

/* Addresses of each server */
$config['servers'][0] = array('address'=>'127.0.0.1', 'port'=>7171);
$config['servers'][1] = array('address'=>'127.0.0.1', 'port'=>7172);
that's 2 servers, to add a third:
Code:
$config['worlds'] = array(0=>"Razork", 1=>"Gogak", 2=>"Mogliz");

$config['servers'][0] = array('address'=>'127.0.0.1', 'port'=>7171);
$config['servers'][1] = array('address'=>'127.0.0.1', 'port'=>7172);
$config['servers'][2] = array('address'=>'127.0.0.1', 'port'=>7173);

I hope you understand :p (Kind of suck at explain)
 
Last edited:
They can share loginport if you want to use Multi world yes.

The port you define there is the status port. Each server has a different status port, but if you use TFSLS you can make the servers share loginport.

On default TFS, the most common status port is 7171, which is the same as login port, but don't mix these.

Also note that otservlist.org does not allow multi world and will ban you if you use it.
 
Back
Top