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

Can only be used by one vocation?

DarkRoses

New Member
Joined
Aug 26, 2011
Messages
17
Reaction score
0
So, I get this on few items I want to work for all vocations:
1267os9.png


I cant find how to fix it, anyone could be kind and help me?;)
 
Edit in movements.xml
example:
Code:
<movevent type="Equip" itemid="7891" slot="feet" event="function" value="onEquipItem">
		<vocation id="1"/>
		<vocation id="5" showInDescription="0"/>
		<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>
	</movevent>
	<movevent type="DeEquip" itemid="7891" slot="feet" event="function" value="onDeEquipItem"/>
To:
Code:
<movevent type="Equip" itemid="7891" slot="feet" event="function" value="onEquipItem"/>
<movevent type="DeEquip" itemid="7891" slot="feet" event="function" value="onDeEquipItem"/>
 
Back
Top