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

[8.4] Please make script

Mobb

New Member
Joined
Sep 7, 2008
Messages
106
Reaction score
0
hello, in my server don't working soft boots... i changing in items.otb but don't working
 
Try This:

<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>
 
Tried this and didnt work, it actually already said that. My soft boots are constantly sparkling and dont drain nor give hp or mana. Do you know how to fix that?
 
Tried this and didnt work, it actually already said that. My soft boots are constantly sparkling and dont drain nor give hp or mana. Do you know how to fix that?

make sure you add them into your movements.xml file

Code:
	<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/
 
said unable to load MoveEvents

Code:
<movevent event="Equip" itemid="2640" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2640" slot="feet" function="onDeEquipItem"/>

i forgot the > at the end
 
Sorry with all the problems and I appreciate your help. Now they dont sparkle anymore but they still dont work. Im sure its something stupid im just not all good with this.
 
said unable to load MoveEvents

Sorry with all the problems and I appreciate your help. Now they dont sparkle anymore but they still dont work. Im sure its something stupid im just not all good with this.
make sure that is in your movements.xml too
Code:
	<movevent event="Equip" itemid="6132" slot="feet" function="onEquipItem"/>
	<movevent event="DeEquip" itemid="6132" slot="feet" function="onDeEquipItem"/>

and make sure your items.xml

Code:
	<item id="6132" name="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>
 
Ok I got them to work just now they wont stop sparkling lol. Im sure I just have the id's backwards. Thanks
 
Back
Top