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

TFS 10.37

Wartio

Any game ideas?
Joined
Apr 2, 2010
Messages
457
Reaction score
29
Location
Sweden
Player Action: 048 046 048 046 048 046 048 058 055 049 055 050
Player.cpp 343: exception occurred, reason:
Network.cpp 844: exception occurred, reason:
Control.cpp 1491: exception occurred (Type = 100) (MainWindow = 55221888), reason:
Communication.cpp 2122: exception occurred (PlayerX = 159) (PlayerY = 387), reason:
Communication.cpp 2100: exception occurred (xmin = 0) (ymin = 0), reason:
Communication.cpp 2079: exception occurred (Type = 97) (OldType = 2581), reason:
Communication.cpp 2003: exception occurred (Type = 97) (CreatureID = 268435456), reason:
Creatures.cpp 335: Invalid speech flag (SpeechFlag = 255)
Comment:

I've downloaded all the new files from github and the server starts 100 % without any errors, but this comes up when i try to login.
 
Code:
function onLogin(cid)
    local player = Player(cid)

    local loginStr = "Welcome to " .. configManager.getString(configKeys.SERVER_NAME) .. "!"
    if player:getLastLoginSaved() <= 0 then
        loginStr = loginStr .. " Please choose your outfit."
        player:sendOutfitWindow()
    else
        if loginStr ~= "" then
            player:sendTextMessage(MESSAGE_STATUS_DEFAULT, loginStr)
        end

        loginStr = string.format("Your last visit was on %s.", os.date("%a %b %d %X %Y", player:getLastLoginSaved()))
    end
    player:sendTextMessage(MESSAGE_STATUS_DEFAULT, loginStr)

    player:registerEvent("PlayerDeath")
    return true
end
 
Back
Top