• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Problem creatures corpes

armyman

Member
Joined
Feb 15, 2014
Messages
318
Reaction score
14
anyone help me with creatures in my server corpes no change for other stage of degradation and no disappear
i'm using avesta distro
 
Not sure about Avesta but in TFS you should have the decayTo tag in items.xml, thats the id it will transform into after an interval (also set by another XML tag)
If you got that set, then it's a problem in the source code (unless Aveta handles it via Lua)
 
I have this in items.xml

XML:
    <item id="2857" article="a" name="dead giant spider">
        <attribute key="containerSize" value="10"/>
        <attribute key="decayTo" value="2858"/>
        <attribute key="duration" value="1800"/>
                <attribute key="corpseType" value="venom"/>
                <attribute key="fluidSource" value="slime"/>
    </item>
    <item id="2858" article="a" name="dead giant spider">
        <attribute key="containerSize" value="10"/>
        <attribute key="decayTo" value="2859"/>
        <attribute key="duration" value="1800"/>
                <attribute key="corpseType" value="venom"/>
    </item>
    <item id="2859" article="a" name="dead giant spider">
        <attribute key="decayTo" value="0"/>
        <attribute key="duration" value="1800"/>
                <attribute key="corpseType" value="venom"/>
 
Back
Top