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

Robe of the Underworld Help me guys :/

ontit

New Member
Joined
Jul 20, 2008
Messages
87
Reaction score
3
Hey fellas, i want to sorcerers and druids can use robe of the underworld. How can i change it?
 
On your movements (data/movements/movements.xml), do you have line for it? (Searh: ctrl+f and try to find something with 8890)
If you have already line for this item, add this:
Code:
        	<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>


If you don't have line for RObe of the underworld, add this :D:
Code:
	<movevent type="Equip" itemid="8890" slot="armor" level="100" 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="8890" slot="armor" event="function" value="onDeEquipItem"/>
REP+ :thumbup:
 
Back
Top