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

Errors in consele

wafuboe

Member
Joined
Dec 24, 2010
Messages
882
Solutions
2
Reaction score
23
Hi people, im making a war server but i have a problem, the console throws me some errors..
its causing that new players dont get the first items "i guess"

[10/4/2014 18:48:19] Account Manager has logged in.
[10/4/2014 18:48:19] [Warning - Vocations::getVocation] Vocation 4294967295 not found.
[10/4/2014 18:48:19] [Warning - Vocations::getVocation] Vocation 4294967295 not found.

[10/4/2014 18:48:19] [Error - CreatureScript Interface]
[10/4/2014 18:48:19] data/creaturescripts/scripts/advancesave.lua:eek:nAdvance
[10/4/2014 18:48:19] Description:
[10/4/2014 18:48:19] attempt to index a nil value
[10/4/2014 18:48:19] stack traceback:
[10/4/2014 18:48:19] [C]: in function 'doSendMagicEffect'
[10/4/2014 18:48:19] data/creaturescripts/scripts/advancesave.lua:15: in function <data/creaturescripts/scripts/advancesave.lua:7>
[10/4/2014 18:48:19] [C]: in function 'doPlayerAddExperience'
[10/4/2014 18:48:19] data/creaturescripts/scripts/lowlevellock.lua:4: in function <data/creaturescripts/scripts/lowlevellock.lua:1>
[10/4/2014 18:49:14] Account Manager has logged out.
[10/4/2014 18:49:19] Kenways has logged in.

Can you people help me?
 
Hi people, im making a war server but i have a problem, the console throws me some errors..
its causing that new players dont get the first items "i guess"

[10/4/2014 18:48:19] Account Manager has logged in.
[10/4/2014 18:48:19] [Warning - Vocations::getVocation] Vocation 4294967295 not found.
[10/4/2014 18:48:19] [Warning - Vocations::getVocation] Vocation 4294967295 not found.

[10/4/2014 18:48:19] [Error - CreatureScript Interface]
[10/4/2014 18:48:19] data/creaturescripts/scripts/advancesave.lua:eek:nAdvance
[10/4/2014 18:48:19] Description:
[10/4/2014 18:48:19] attempt to index a nil value
[10/4/2014 18:48:19] stack traceback:
[10/4/2014 18:48:19] [C]: in function 'doSendMagicEffect'
[10/4/2014 18:48:19] data/creaturescripts/scripts/advancesave.lua:15: in function <data/creaturescripts/scripts/advancesave.lua:7>
[10/4/2014 18:48:19] [C]: in function 'doPlayerAddExperience'
[10/4/2014 18:48:19] data/creaturescripts/scripts/lowlevellock.lua:4: in function <data/creaturescripts/scripts/lowlevellock.lua:1>
[10/4/2014 18:49:14] Account Manager has logged out.
[10/4/2014 18:49:19] Kenways has logged in.

Can you people help me?

Only by reading this is almost impossible to help you, please provide us with server version and scripts.
 
i dont know its called OTX server 2.32 x64 i use it for a 8.6 war server

i think it is based on forgotten
lowlevellock
Code:
function onLogin(cid)

    if getPlayerLevel(cid) < 100 then
    doPlayerAddExperience(cid, (getExperienceForLevel(100) - getPlayerExperience(cid)))
end
return TRUE
end

[10/4/2014 18:48:19] [Warning - Vocations::getVocation] Vocation 4294967295 not found.
[10/4/2014 18:48:19] [Warning - Vocations::getVocation] Vocation 4294967295 not found.
 
Make sure the account manager has a vocation id that exists in the server, normally it has 0, so no vocation like someone in rook.
For the other errors, post the scripts.
 
Back
Top Bottom