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

I need create a boot with speed and regeneration

I edited, most did not work.

<item id="2358" name="pair of vip boots">
<attribute key="weight" value="800"/>
<attribute key="slotType" value="feet"/>
<attribute key="decayTo" value="10021"/>
<attribute key="speed" value="50"/>
<attribute key="healthGain" value="30"/>
<attribute key="healthTicks" value="2000"/>
<attribute key="manaGain" value="60"/>
<attribute key="manaTicks" value="1000"/>
</item>


help me plz?
 
Add them in movements.xml! :p
Code:
	<movevent type="Equip" itemid="2358" slot="feet" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2358" slot="feet" event="function" value="onDeEquipItem"/>
 
Back
Top