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

Corpose dont disappear

jonathan.dsa

New Member
Joined
Nov 17, 2011
Messages
61
Reaction score
0
Hello dears,
I have a problem here, in my global ot, the corpose of new monster of zao dont disappear, exemple lizards and drakens, somebody can help me please?
 
Try to find the corpse at items.xml and put this
Code:
<attribute key="duration" value="600" />
if you dont find you have to add it:
Code:
 <item id="monster dead id: 2814 example" article="a" name="dead zao example">
        <attribute key="weight" value="4400" />
        <attribute key="containerSize" value="5" />
        <attribute key="duration" value="600" />
        <attribute key="corpseType" value="blood" />
    </item>
 
Add this attributes:
XML:
<attribute key="decayTo" value="itemid" />
<attribute key="duration" value="600" />
 
Last edited:
Back
Top