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

Solved Custom Item issue:/

Samaster

Raptorserver.ddns.net
Joined
Jun 9, 2013
Messages
291
Reaction score
23
Location
UK
Hey guys, i have a problem with my custom item donator boots.. i want them to regen health + mana permenently and x2 as fast as soft boots.. Here is my script, but i dont know whats wrong with it?

<item id="2646" name="donator boots">
<attribute key="weight" value="900" />
<attribute key="armor" value="7" />
<attribute key="slotType" value="feet" />
<attribute key="speed" value="80" />
<attribute key="healthGain" value="100" />
<attribute key="healthTicks" value="3000" />
<attribute key="manaGain" value="100" />
<attribute key="manaTicks" value="3000" />

Can someone help me please?
 
XML:
	<movevent type="Equip" itemid="2646" slot="feet" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2646" slot="feet" event="function" value="onDeEquipItem"/>

Add that code to your movements.xml
 
Back
Top