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

How do i change item vocation?

Example the dark lord's cape, its only for sorcs and i need it for druids too.. help?

I'm not sure, but i think you can add this:
XML:
<vocation name="Sorcerer"/>
<vocation name="Druid"/>
<vocation name="Knight"/>
<vocation name="Paladin"/>

Best regards,
Dridia
 
Add in movements.xml
Lua:
	<vocation id="2"/>
<vocation id="6" showInDescription="0"/>

Example
Lua:
       <movevent type="Equip" itemid="8865" slot="armor" level="65" 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="8865" slot="armor" event="function" value="onDeEquipItem"/>
 
Back
Top