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

OTClient Client not selecting correct things folder

Itutorial

Legendary OT User
Joined
Dec 23, 2014
Messages
2,330
Solutions
68
Reaction score
1,008
So I used this in otlientrc.lua

EnterGame.setUniqueServer("myip","7171","1098")

Whenever I try to connect to the game it tried to use the 1074 things folder which doesn't exist and shouldn't because the server is 10.98 and it should be connecting to 1098 folder, server, ect. Anyone know this problem?
Post automatically merged:

Okay I found the solution.

In modules/client_entergame/entergame.lua

find function EnterGame.init()

replace
Code:
local clientVersion = g_settings.getInteger('client-version')
  if clientVersion == 0 then clientVersion = 1098 end

with
Code:
local clientVersion = 1098
 
Last edited:
Back
Top