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

Item.xml Problem boots not working

Blackcody

RiseOfTibia Owner
Joined
Aug 31, 2008
Messages
136
Reaction score
1
Code:
 <item id="6132" article="a" name="pair of soft boots">
  <attribute key="weight" value="800"/>
  <attribute key="slotType" value="feet"/>
  <attribute key="transformEquipTo" value="2640"/>
  <attribute key="stopduration" value="1"/>
  <attribute key="showduration" value="1"/>
 </item>
 <item id="2640" article="a" name="pair of soft boots">
  <attribute key="weight" value="800"/>
  <attribute key="slotType" value="feet"/>
  <attribute key="transformDeEquipTo" value="6132"/>
  <attribute key="healthGain" value="2"/>
  <attribute key="healthTicks" value="1000"/>
  <attribute key="manaGain" value="2"/>
  <attribute key="manaTicks" value="1000"/>
 </item>

Nothing happends when the boots are equiped it stays as item id 6132 equipded or not:mad:
 
Last edited:
<movevent type="Equip" itemid="2640" slot="feet" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="2640" slot="feet" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="6132" slot="feet" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="6132" slot="feet" event="function" value="onDeEquipItem"/>
pase it in movements.xml
 
Back
Top