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

TFS 1.X+ Error Item Protection

icekis

Member
Joined
Jan 18, 2018
Messages
91
Reaction score
5
I am using OTX 3.9 based on TFS 1.2 and my server doesn't respect item attributes.

For example magma legs, 100% absorbPercentFire and it doesn't work

XML:
<item id="7894" name="magma legs">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="absorbPercentFire" value="100" />
        <attribute key="absorbPercentIce" value="-6" />
        <attribute key="slotType" value="legs" />
    </item>

XML:
    <movevent event="Equip" itemid="7894" slot="legs" level="40" function="onEquipItem">
        <vocation name="Sorcerer" />
        <vocation name="Master Sorcerer" showInDescription="0" />
        <vocation name="Druid" />
        <vocation name="Elder Druid" showInDescription="0" />
    </movevent>
    <movevent event="DeEquip" itemid="7894" slot="legs" function="onDeEquipItem" />


Could anyone help?
 
Back
Top