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

Multi World

Kudzu

Active Member
Joined
Apr 9, 2008
Messages
512
Reaction score
38
Location
localhost
I have compiled TFS 0.3.6 with -D__LOGIN_SERVER__ and when I have started 2 worlds then nobody can enter to the game but when I have started TFS normal then they can enter to the game.Why?
 
In first folder with a TFS-

servers.xml
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<servers>
    <server id="0" name="OTS" versionMin="854" versionMax="854" address="127.0.0.1" port="7172"/>
    <server id="1" name="Test Serwer" versionMin="854" versionMax="854" address="127.0.0.1" port="7173"/>
</servers>

config:
PHP:
	worldId = 0
	ip = "my IP"
	bindOnlyConfiguredIpAddress = false
	loginPort = 7171
	gamePort = 7172
	adminPort = 7171
	statusPort = 7171
	loginTries = 7
	retryTimeout = 5 * 1000
	loginTimeout = 60 * 1000
	maxPlayers = 200
	motd = "Something"
	displayOnOrOffAtCharlist = true
	onePlayerOnlinePerAccount = false
	allowClones = false
	serverName = "OTS"
	loginMessage = "Something"
	statusTimeout = 5 * 60 * 1000
	replaceKickOnLogin = true
	forceSlowConnectionsToDisconnect = true
	loginOnlyWithLoginServer = false
	premiumPlayerSkipWaitList = true

Now,second folder with TFS-
servers like in first folder and config:
PHP:
	worldId = 1
	ip = "MY IP"
	bindOnlyConfiguredIpAddress = false
	loginPort = 7171
	gamePort = 7173
	adminPort = 7171
	statusPort = 7171
	loginTries = 7
	retryTimeout = 5 * 1000
	loginTimeout = 60 * 1000
	maxPlayers = 50
	motd = "Something"
	displayOnOrOffAtCharlist = true
	onePlayerOnlinePerAccount = false
	allowClones = false
	serverName = "Test Serwer"
	loginMessage = "Welcome"
	statusTimeout = 5 * 60 * 1000
	replaceKickOnLogin = true
	forceSlowConnectionsToDisconnect = true
	loginOnlyWithLoginServer = false
	premiumPlayerSkipWaitList = true
 
Back
Top