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

OT Client: IP and Version:

Derlexy

Intermediate OT User
Joined
Jun 29, 2011
Messages
219
Reaction score
101
Hello there.
I set my OTC to open on my server IP and Version, but when i send the OTC to my friends, they cant login.

On ENTERGAME.LUA:
9cef94afbacef7b48830b9da4dfe7203.png

5bb252e719ec85ae38ce8dea8dcbec15.png


When i try to login on my on computer, everything works.
The problem is when i send the client to a friend and he open the client:
5d89bc6c66e124991e3e193d9941b140.png


Can someone help me? TY
 
Tell him to go to /things make a folder called '1074' and put in the 10.74 tib client .spr and .dat into it.
 
You can try making it like this function inside init:
Lua:
if clientVersion == 0 then clientVersion = 1074 end
Change it to 772 like your ots version.

Or you can change this inside init:
Lua:
  local host = g_settings.get('host')
  local port = g_settings.get('port')
Instead of g_settings, set there your host and port.
Like this:
Lua:
 local host = 'derlexy.servegame.com'
 
You can try making it like this function inside init:
Lua:
if clientVersion == 0 then clientVersion = 1074 end
Change it to 772 like your ots version.

Or you can change this inside init:
Lua:
  local host = g_settings.get('host')
  local port = g_settings.get('port')
Instead of g_settings, set there your host and port.
Like this:
Lua:
 local host = 'derlexy.servegame.com'
Doesn't work =/
 
Bump I have this same problem.

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

it tries to connect to 1074 thing folder instead.
 
Back
Top