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

Is not working.

vejsa

Banned User
Joined
Nov 3, 2007
Messages
434
Reaction score
0
Hello I have tried to make these boots to give health and mana but when I try them out they neither give hp or mana.. Does any one see what I'v done wrong? Here is the boots:

Code:
	<item id="11113" name="xxxx boots">
		<attribute key="armor" value="3" />
		<attribute key="slotType" value="feet" />
		<attribute key="weight" value="2250" />
		<attribute key="healthGain" value="85" />
		<attribute key="healthTicks" value="2000" />
		<attribute key="manaGain" value="85" />
		<attribute key="manaTicks" value="2000" />
	</item>
 
add this in movments.xml
Lua:
	<movevent type="Equip" itemid="11113" slot="feet" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="11113" slot="feet" event="function" value="onDeEquipItem"/>
 
Back
Top