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

Only clients with protocol 10.98 allowed. TFS 1.4.2

50percent

New Member
Joined
Apr 18, 2024
Messages
5
Reaction score
1
GitHub
ZafeerTariq
I compiled the forgotten server 1.4.2 and even though it says client version str = 10.98 im still unable to connect using the otclient.

1713557134269.png
1713557198096.png
 
With this outdated OTC, it's better for you to use a more recent one that is compatible with TFS 1.4.2.
i downloaded this client but still getting the same error. Do i need to change some settings or lua scripts in this client to make it work? if not then its the same error1713562942025.png
 
Did you already put the IP with version 1098 in the init.lua? If not, edit it then. For example,

Lua:
-- servers shown in enter game list
SERVER_LIST = {
  {
    host = '127.0.0.1',
    name = "name your server",
    port = 7171,
    protocol = 1098,
  },
}
 
in otc open console and
Code:
print(g_game.getClientVersion())


also send complete code of these functions (server)

Lua:
ProtocolLogin:nRecvFirstMessage(NetworkMessage& msg)
ProtocolGame:nRecvFirstMessage(NetworkMessage& msg)
 
Back
Top