• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Items] How to edit level for wear of a terra mantle

StormRusher

New Member
Joined
Dec 23, 2009
Messages
138
Reaction score
0
Well i wanna know how to edit level for wear of items, life terra mantle, lightning robe, etc

Thanks
 
Well i wanna know how to edit level for wear of items, life terra mantle, lightning robe, etc

Thanks

Add this in movements.xml:
LUA:
<movevent type="Equip" itemid="7884" slot="armor" level="100" event="function" value="onEquipItem">
		<vocation id="1"/> --sorc
		<vocation id="5" showInDescription="0"/> --master sorc
		<vocation id="2"/> --druid
		<vocation id="6" showInDescription="0"/> --elder druid
	</movevent>
<movevent type="DeEquip" itemid="7884" slot="armor" level="100" event="function" value="onDeEquipItem"/>
 
Back
Top