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

Windows Questions about TFS 1.1

Kuzyn

Excellent OT User
Joined
Dec 19, 2009
Messages
1,763
Solutions
3
Reaction score
920
Location
pl?
Hello!
I downloaded the newest TFS 1.1 sources (from github) and I compiled it.

Now first question, which exe should I use? This one from vc12/x64/Release/theforgottenserver.exe? Or from this site: http://nightlies.otland.net/ ?

Next question, is my database okay? I have only schema.sql in my folder and when I uploaded it there are no example accounts etc.

And the last.. I tried to connect to the server with Tibia 10.78 and it says that "Only clients with protocol 10.77 allowed!" why?


--
sorry for this noob questions but I wasnt working with servers since tibia 8.1 :p
 
Last edited:
the point of compiling the source is to create the exe. if you use a release from the nightlies, there's no point in compiling. the nightlies contain the latest build, so if you compile an exe, it will be the same as the latest on the nightlies.

There will be no example accounts because the AAC website creates characters rather than copying them.

The server currently only supports 10.77 as far as I know. It's easy to adjust if you compile your own.
in definitions.h:
Code:
#define CLIENT_VERSION_MIN 1076
#define CLIENT_VERSION_MAX 1077
#define CLIENT_VERSION_STR "10.77"
Just change the max to 1078 and recompile and it'll accept 10.76-10.78. At that point you cannot use the nightlies, you will have to use the one you built which can be found in the directory of your first question
 
Back
Top