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

Lua Blue legs don't add ml!

Markoothebrave

New Member
Joined
Jun 25, 2009
Messages
17
Reaction score
0
I changed my blue legs in items.xml, I added there :

Code:
	<item id="7730" name="blue legs">
		<attribute key="weight" value="1800"/>
		<attribute key="armor" value="8"/>
		<attribute key="slotType" value="legs"/>
		<attribute key="magiclevelpoints" value="1"/>
And it's written od the legs --> 13:08 You see blue legs (Arm:8, magic level +1).
But when I wear them, they don't give magic lvl.
 
Put this in your movements.xml

<movevent type="Equip" itemid="7730" slot="legs" event="function" value="onEquipItem">
<vocation name="Master Sorcerer" showInDescription="1"/>
<vocation name="Elder Druid" showInDescription="1"/>
<vocation name="Epic Sorcerer" showInDescription="1"/>
<vocation name="Epic Druid" showInDescription="1"/>
</movevent>
<movevent type="DeEquip" itemid="7730" slot="legs" event="function" value="onDeEquipItem"/>
 
Back
Top