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

All Steps To Create Multi World.......

oOIOo

HetZera.Net
Joined
Mar 30, 2010
Messages
221
Reaction score
1
After More Search and Some test on my servers i reach to the way to get multi World

1.Server1 config.lua,
also it should be like this in Server2 :
Code:
loginOnlyWithLoginServer = true


Code:
	worldId = 0
	ip = "Server1 name"
	bindOnlyConfiguredIpAddress = false
	loginPort = 7171
	gamePort = 7172
	adminPort = 7171
	statusPort = 7171
        [COLOR="Red"]dataDirectory = "/xampp/htdocs/DATA DIR"[/COLOR]
Code:
server id="0" name="SERVER ONE" versionMin="841" versionMax="842" address="127.0.0.1" port="7171"
server id="1" name="SERVER TWO" versionMin="841" versionMax="842" address="127.0.0.1" port="7171"

2.Server2 config.lua,
Code:
	worldId = 1
	ip = "Server2 name"
	bindOnlyConfiguredIpAddress = false
	loginPort = 7171
	gamePort = 7173
	adminPort = 7171
	statusPort = 7171
	[COLOR="Red"]dataDirectory = "/xampp/htdocs/DATA DIR"[/COLOR]
Code:
server id="0" name="SERVER ONE" versionMin="841" versionMax="842" address="127.0.0.1" port="7171"
server id="1" name="SERVER TWO" versionMin="841" versionMax="842" address="127.0.0.1" port="7171"
Code:
[COLOR="DarkGreen"][COLOR="Red"]dataDirectory = "/xampp/htdocs/DATA DIR"[/COLOR][/COLOR]
With this line, it allows multiworld hosts to have each config.lua and therefore server .exe linked to the one data directory, like so.



Hope it Help anyone need it and if i forget anything or there's anything wrong then tell me and if i helped u then hope u rep++
 
Last edited:
Very nice, good work.. Propably a tutorial like this one out there, but you can never get enough of the good stuff ;)
 
Back
Top