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

Rings per vocation (Movements)

ex eclipse

New Member
Joined
Jul 15, 2007
Messages
282
Reaction score
1
Location
Brazil
hello there, im trying to set a ring for only paladin for example but when i try to reload movements it fails

Code:
<movevent type="Equip" itemid="8752" slot="ring" event="function" value="onEquipItem"/>
<vocation id="1"/>
<vocation id="2"/>
<vocation id="5" showInDescription="0"/>
<vocation id="6" showInDescription="0"/>
</movevent>
<movevent type="DeEquip" itemid="8752" slot="ring" event="function" value="onDeEquipItem"/>

why?
 
Code:
<movevent type="Equip" itemid="8752" slot="ring" event="function" value="onEquipItem"/> <--
<vocation id="1"/>
<vocation id="2"/>
<vocation id="5" showInDescription="0"/>
<vocation id="6" showInDescription="0"/>
</movevent>

Code:
<movevent type="Equip" itemid="8752" slot="ring" event="function" value="onEquipItem">  <--
<vocation id="1"/>
<vocation id="2"/>
<vocation id="5" showInDescription="0"/>
<vocation id="6" showInDescription="0"/>
</movevent>
 
Back
Top