• 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 Attempt to call global 'getCreatureCondition' (a nil value)

1268995

Member
Joined
Sep 9, 2010
Messages
422
Reaction score
13
Got this error when will log-in in the server.

Code:
[Error - CreatureScript Interface]
data/creaturescripts/scripts/login.lua:onLogin
Description:
data/lib/050-function.lua:334: attempt to call global 'getCreatureCondition' (a nil value)
stack traceback:
        data/lib/050-function.lua:334: in function 'isPlayerGhost'
        data/creaturescripts/scripts/login.lua:32: in function <data/creaturescripts/scripts/login.lua:6>
 
Solved in teamviewer, the function was called hasCreatureCondition (The OTX Server Version (2.11 - 6055) - Codename: (Doomed Elderberry)). He added this to data/lib/100-compat.lua.
Code:
hasCondition = hasCreatureCondition
getCreatureCondition = hasCreatureCondition
 
Back
Top