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

[11:34:07.618] [Error - MoveEvent::executeStep] Call stack overflow. what is this?

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
As the topic says i got this error:
[11:34:07.618] [Error - MoveEvent::executeStep] Call stack overflow.
over and over again keept looping and no one could login not sure what this is.... any one knows? using 0.4 dev
 
Can't really tell much from just that. But considering it's a stack overflow i would guess when walking in some specific place it tries to execute some faulty script or simply try to execute too much shit.
Check any newly added scripts
 
Look:
You have error with Transform Item To...
example:

<item id="7697" article="an" name="ring">
<attribute key="weight" value="80"/>
<attribute key="slotType" value="ring"/>
<attribute key="transformEquipTo" value="7708"/>
<attribute key="stopduration" value="1"/>
<attribute key="showduration" value="1"/>
</item>


you have use transform to item 7708
and your item look like:
<item id="7708" article="a" name="ring">
<attribute key="weight" value="80"/>
<attribute key="slotType" value="ring"/>
</item>

and that is why you have error. Your 7708 item is not Set corectly configure.
Correct Configure should look like:

<item id="7708" article="a" name="ring">
<attribute key="weight" value="80"/>
<attribute key="slotType" value="ring"/>
<attribute key="decayTo" value="0"/>
<attribute key="duration" value="7200"/>
<attribute key="showduration" value="1"/>
</item>


or you should check file if you have in save in moveevents deequip and equip and bad function save in file for that.


 
Back
Top