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

Problem creatures corpes

armyman

Member
Joined
Feb 15, 2014
Messages
318
Reaction score
13
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"/>
 
i think is this duration 1800 is long time, i change this value and work fine, anyone know the Real value duration?
 
<attribute key="duration" value="1800"/> is a long time
1800 is the amount of seconds already.
Just set it to an amount of time your comfortable with.

If you want to test if decay is working..
Set the value to like 10 seconds for each one.
 
Back
Top