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

Solved [TFS 1.5] - Instantly Auto Kicked By Server.

vbest

New Member
Joined
Jun 7, 2011
Messages
39
Reaction score
3
Hello otland!

I've encountered something odd with TFS 1.5 Downgraded 7.72 Client.
I was doing a pretty simply task by adding two new characters in my database through phpmyadmin, I then launched my server like I usually do and now I can't enter with any of my characters that was created before and after, I just get kicked from the server. I can however login with GM access.
Anyone know the cause of this?

NORMAL PLAYER:
GM ACCESS:
Post automatically merged:

EDIT:
I managed to solve the problem.
Cause of the problem was kickIdlePlayerAfterMinutes in config.lua, it seems it doesn't function correctly and kicks you out of your own server if you exceed it over some amount.
Lua:
kickIdlePlayerAfterMinutes = 1500000     -- Bad

I simply removed one '0' of the amount and the server function properly again without instantly kicking other players when they log in.
Lua:
kickIdlePlayerAfterMinutes = 150000      -- Correct
 
Last edited:
Back
Top