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

Can Anyone Help With Broken Fields?

Jknot

Member
Joined
Feb 18, 2008
Messages
153
Reaction score
12
Location
South Carolina
so i've been trying to fix this for 3 days now and i have searched otland and found alot but nothing so far has been able to help me. none of my magic fields will dissapear i have check and im not using the static one's i also have added the decay to in items xml like this
Code:
 <item id="1492" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1493" />
        <attribute key="duration" value="120" />
        <attribute key="field" value="fire">
            <attribute key="damage" value="20" />
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1493" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="decayTo" value="1494" />
        <attribute key="duration" value="120" />
        <attribute key="replaceable" value="0" />
        <attribute key="field" value="fire">
            <attribute key="ticks" value="10000" />
            <attribute key="count" value="7" />
            <attribute key="damage" value="10" />
        </attribute>
    </item>
    <item id="1494" article="a" name="fire field">
        <attribute key="type" value="magicfield" />
        <attribute key="duration" value="60" />
        <attribute key="field" value="fire" />
    </item>


everything decays fine untill it gets to the 1494 field witch is the smallest and last one it wont go away and i have no idea what to do next im using 0.3.6 v8 2 crying damson any help would be much appreciated guys
 
Solution
I think it might be that the last firefield, 1494, has no decayTo value. On my items list, it has a decayto value of 0.
Perhaps try putting that in, and see if it helps. Good luck!

XML:
<item id="1494" article="a" name="fire field">
        <attribute key="type" value="magicfield"/>
        <attribute key="decayTo" value="0"/>
        <attribute key="duration" value="120"/>
        <attribute key="field" value="fire"/>
    </item>
I think it might be that the last firefield, 1494, has no decayTo value. On my items list, it has a decayto value of 0.
Perhaps try putting that in, and see if it helps. Good luck!

XML:
<item id="1494" article="a" name="fire field">
        <attribute key="type" value="magicfield"/>
        <attribute key="decayTo" value="0"/>
        <attribute key="duration" value="120"/>
        <attribute key="field" value="fire"/>
    </item>
 
Solution
I think it might be that the last firefield, 1494, has no decayTo value. On my items list, it has a decayto value of 0.
Perhaps try putting that in, and see if it helps. Good luck!

XML:
<item id="1494" article="a" name="fire field">
        <attribute key="type" value="magicfield"/>
        <attribute key="decayTo" value="0"/>
        <attribute key="duration" value="120"/>
        <attribute key="field" value="fire"/>
    </item>
thanks bro i can't beleive i missed that i have been busting my brain for a few days now lol thanks again very much
Post automatically merged:

hmm now i notice i can't cast another field on top of the existing one like if thre is a fire bomb there i cannot cast another one ontop of the other one think maybe u could help with that too mr wizard?
 
Back
Top