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

Problem with Multi-World on my TFS :(

Nutaharion

New Member
Joined
Oct 29, 2008
Messages
133
Reaction score
4
Location
Poland
Hello,

I have problem with multi-world on my TFS server.
I just see character's with WorldID 1, character's with WorldID 2 are not displayed on Character List :( I can simply play with character's with WorldID 1.
I checked my database and all looks fine, so something is wrong with configs. I read a lot of tutorials, and looked for errors like mine, but nothing helped.


My server is -> TFS 0.3.6

servers.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<servers>
	<server id="1" name="Name1" versionMin="850" versionMax="854" address="xxxxxx" port="7172"/>
	<server id="2" name="Name2" versionMin="850" versionMax="854" address="xxxxxx" port="7173"/>
</servers>


Server 1 config.lua
Lua:
	-- Connection config
	worldId = 1
	ip = "xx.xxx.xx.xxx"
	bindOnlyConfiguredIpAddress = false
	loginPort = 7171
	gamePort = 7172
	adminPort = 7171
	statusPort = 7171
	loginTries = 10
	retryTimeout = 5 * 1000
	loginTimeout = 60 * 1000
	maxPlayers = 200
	motd = "Tyryntyty."
	displayOnOrOffAtCharlist = false
	onePlayerOnlinePerAccount = true
	allowClones = false
	serverName = "Name1"
	loginMessage = "Welcome! We have hope you will enjoy the game!"
	statusTimeout = 5 * 60 * 1000
	replaceKickOnLogin = true
	forceSlowConnectionsToDisconnect = false
	loginOnlyWithLoginServer = false
	premiumPlayerSkipWaitList = true

Server 2 config.lua
Lua:
	-- Connection config
	worldId = 2
	ip = "xx.xxx.xx.xxx"
	bindOnlyConfiguredIpAddress = false
	loginPort = 7171
	gamePort = 7173
	adminPort = 7171
	statusPort = 7171
	loginTries = 10
	retryTimeout = 5 * 1000
	loginTimeout = 60 * 1000
	maxPlayers = 200	
        motd = "Tyryntyty."
	displayOnOrOffAtCharlist = false
	onePlayerOnlinePerAccount = true
	allowClones = false
	serverName = "Name2"
	loginMessage = "Welcome! We have hope you will enjoy the game!"
	statusTimeout = 5 * 60 * 1000
	replaceKickOnLogin = true
	forceSlowConnectionsToDisconnect = false
	loginOnlyWithLoginServer = true
	premiumPlayerSkipWaitList = true
 
Back
Top