• 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 do this?

Fokclown

New Member
Joined
Sep 12, 2008
Messages
73
Reaction score
0
Location
Sweden
How do i change items for example :
Molten plate can only be used by paladins... how do i make so all vocations can use?
and how do i make an twohanded weapon onehanded?
 
Movments.XML -
<movevent type="DeEquip" itemid="USEYOUROWN" slot="armor" event="function" value="onDeEquipItem"/>
<movevent type="Equip" itemid="USEYOUROWN" slot="armor" event="function" value="onEquipItem">
<vocation id="3"/>
<vocation id="7" showInDescription="0"/>
<vocation id="11" showInDescription="0"/> <--- well add your vocations here
</movevent>




Items.XML

</item>
<item id="11317" name="zaoan halberd">
<attribute key="defense" value="15" />
<attribute key="attack" value="37" />
<attribute key="weaponType" value="axe" />
<attribute key="slotType" value="two-handed" /> <----- Delete this line
<attribute key="weight" value="8700" />
</item>
 
Last edited:
Back
Top