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

Why soft boots dont work?!

Would be great if you could show us the soft boots part of your items.xml and movements.xml oO
Also which distro you're using.
 
Movements.xml
Code:
<!-- Boots -->
	<movevent event="Equip" itemid="2195" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2195" slot="feet" function="onDeEquipItem"/>
[B]	<movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem"/>[/B]
	<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/>
	<movevent event="Equip" itemid="7886" slot="feet" function="onEquipItem">
		<vocation name="Sorcerer"/>
		<vocation name="Master Sorcerer" showInDescription="0"/>
		<vocation name="Druid"/>
		<vocation name="Elder Druid" showInDescription="0"/>
	</movevent>

Items.xml for Soft boots

Code:
<item id="2640" name="soft boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="decayTo" value="6530"/>
		<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"/>
	</item>

If this doesn't help, i know nothing about scripting ;D
 
Back
Top