• 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 0.X transformDeEquipTo

mmheo

New Member
Joined
Sep 14, 2017
Messages
157
Reaction score
1
hello guys im use 0.4
my soft boots don't work but when remove transformDeEquipTo from items.xml work fine

Lua:
    <item id="2640" article="a" name="pair of soft boots">
        <attribute key="weight" value="800" />
        <attribute key="slotType" value="feet" />
        <attribute key="decayTo" value="10021" />
        <attribute key="transformDeEquipTo" value="6132" />
        <attribute key="duration" value="14400" />
        <attribute key="healthGain" value="1" />
        <attribute key="healthTicks" value="2000" />
        <attribute key="manaGain" value="2" />
        <attribute key="manaTicks" value="1000" />
        <attribute key="showduration" value="1" />
        <attribute key="showattributes" value="1" />
    </item>
anyone know how i can fix this?
 
Lua:
    <movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem" />
    <movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem" />

do you have this in movements.xml?
 
Back
Top