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

How to... make TFS 0.3 Multiworld system ?

MagicHereos

Magic.org.pl
Joined
Nov 6, 2008
Messages
60
Reaction score
0
Hello, i have Source of TFS (and TFS.exe) and I going to use Multiworld System, but i don't know HOW =/ Can Anybody help me?:blink::confused::wub:
 
First we open config.lua, we search for that

-- Connection config
worldId = 0

You set up the ID of your world ID to the number u put in here:

Go to data/XML/ and open servers.xml

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<servers>
	<server id="0" name="Example" address="127.0.0.1" port="7171"/>
</servers>

You should just add a new line in there like this:

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<servers>
	<server id="0" name="Example" address="127.0.0.1" 
<server id="1" name="Example" address="127.0.0.1" 
port="7171"/>
</servers>

Change the id="" to the ID you put in config.lua...

And thats it!
 
You first need to compile it using adding the line "-D__LOGIN_SERVER__" to C++ Compiler, but I still don't know how to use it.
 
Back
Top