• 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 Gameworld is under maintenance. Please reconnect in a while. Server crash.

unixstyle297

~NewPDX U2D Founder~
Joined
Sep 2, 2012
Messages
1,019
Reaction score
12
Location
POLAND
Hi! I have a big problem with my server. I have in command line nothing, but it is in client game. Nothing or nobody can't log in. Server doesn't crash, but all players are logged out:

Gameworld is under maintenance. Please reconnect in a while.

I'm using trunk TFS 0.3.6pl1 v8 by cyko, !compiled! from pure sources.

This label is visible in a cycle of few hours. What is this problem?

I hear about globalevents. What I should to do in these folder. I hear this problem will be solved. ??
 
Refresh!

Is it may be going of server save?

It's my save.lua:

Code:
local config = {
   broadcast = {120, 30},
   shallow = "no",
   delay = 120,
   events = 30
}

config.shallow = getBooleanFromString(config.shallow)

local function executeSave(seconds)
   if(isInArray(config.broadcast, seconds)) then
     local text = ""
     if(not config.shallow) then
       text = "Full s"
     else
       text = "S"
     end

     text = text .. "erver save within " .. seconds .. " seconds, please mind it may freeze!"
     doBroadcastMessage(text)
   end

   if(seconds > 0) then
     addEvent(executeSave, config.events * 1000, seconds - config.events)
   else
     doSaveServer(config.shallow)
   end
end

function onThink(interval, lastExecution, thinkInterval)
   if(table.maxn(config.broadcast) == 0) then
     doSaveServer(config.shallow)
   else
     executeSave(config.delay)
   end

   return true
end

And global save conf:

Code:
  globalSaveEnabled = false
  globalSaveHour = 8
  shutdownAtGlobalSave = false
  cleanMapAtGlobalSave = false

What is then problem? Somebody can help me??
 
God char can't log in. I have changed an engine and all is OK! Cyko engine sucks, but I am not changing all data, I only change engine and all is OK!

Problem is solved.
 
Back
Top