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

Help my Server is Crashing!!!

ragal

Member
Joined
Nov 29, 2007
Messages
735
Reaction score
19
Location
Germany - Berlin
Hello,

I need some help , My Server is allways crash and i dontknow why

Sometimes it crash all 2 hours sometime is 16hours on than crash

sometimes all 20 minutes crash

Someone tell me that the magebomb can make crash , than i make Anti Mage Bomb Script: Creaturescripts

Code:
<event type="login" name="PlayerLogin" event="script" value="magebomb.lua"/>
Code:
  local config = {
        seconds = 2,            -- in seconds
        onlyWithSameIP = "yes"  -- will work for all players ("no"), or only check player with same IP? ("yes")
}

--DONT MODIFY
config.onlyWithSameIP = getBooleanFromString(config.onlyWithSameIP)

local m_lastLogin, m_lastIP = 0, 0

function onLogin(cid)
        local timeNow, playerIP = os.time(), getPlayerIp(cid)
        if(m_lastLogin + config.seconds >= timeNow and
                (config.onlyWithSameIP == FALSE or m_lastIP == playerIP)) then
                return FALSE
        end

        m_lastIP = playerIP
        m_lastLogin = timeNow
        return TRUE
end

And in Config.lua

Code:
	loginTries = 1
    retryTimeout = 1
    loginTimeout = 1

Now is not so much crash but it stills crash all 1,5hrs

And I DOnt Know why??? , Where can i find Crashlog????



I Use Real Map Project 0.8 with Fixxed .exe von Cykotioan

Mystic Spirit Version 0.2.2

Please Help Me!!


All Who can help me a bit i give Reputation points!



Thanks in advance
 
Back
Top