• 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 Gameworld is under maintenance after clean

SaintSeiya

New Member
Joined
Jan 3, 2015
Messages
27
Reaction score
0
Hi guys, after running /clean, it says that the Game world is under maintenance. Please re-connect in a while.

I know Global Map it's really huge, but isn't there a way to don't force logging out?

I'm using TFS 1.0 on Ubuntu 12.04.

That's my clean.lua:

Code:
function onSay(cid, words, param)
    local player = Player(cid)
    if not player:getGroup():getAccess() then
        return true
    end

    if player:getAccountType() < ACCOUNT_TYPE_GOD then
        return false
    end

    local itemCount = cleanMap()
    if itemCount > 0 then
        player:sendTextMessage(MESSAGE_STATUS_WARNING, "Cleaned " .. itemCount .. " item" .. (itemCount > 1 and "s" or "") .. " from the map.")
    end
    return false
end
 
Back
Top