• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

items.xml

darkangel1

Member
Joined
Oct 31, 2023
Messages
58
Reaction score
6
<item id="26382" name="sanguine blade">
<attribute key="weight" value="5500" />
<attribute key="defense" value="31" />
<attribute key="attack" value="52" />
<attribute key="weaponType" value="sword" />
<attribute key="extradef" value="3" />
<attribute key="skillSword" value="1" />
</item>

<item id="22400" article="a" name="umbral masterblade">
<attribute key="weight" value="5500" />
<attribute key="defense" value="31" />
<attribute key="attack" value="52" />
<attribute key="weaponType" value="sword" />
<attribute key="extradef" value="3" />
<attribute key="skillSword" value="1" />
</item>


Hi. I can't figure it out, maybe someone has encountered this before. The two swords have the same parameters, but when equipped with umbral, it grants +3 to the sword skill.
However, when equipped with sanguine, it does not grant +3 to the sword skill.

Although both items have +3 sword in their descriptions.

What am I missing?
Post automatically merged:

<item id="26382" name="sanguine blade">
<attribute key="weight" value="5500" />
<attribute key="defense" value="31" />
<attribute key="attack" value="52" />
<attribute key="weaponType" value="sword" />
<attribute key="extradef" value="3" />
<attribute key="skillSword" value="1" />
</item>

<item id="22400" article="a" name="umbral masterblade">
<attribute key="weight" value="5500" />
<attribute key="defense" value="31" />
<attribute key="attack" value="52" />
<attribute key="weaponType" value="sword" />
<attribute key="extradef" value="3" />
<attribute key="skillSword" value="1" />
</item>


Hi. I can't figure it out, maybe someone has encountered this before. The two swords have the same parameters, but when equipped with umbral, it grants +3 to the sword skill.
However, when equipped with sanguine, it does not grant +3 to the sword skill.

Although both items have +3 sword in their descriptions.

What am I missing?
<movevent event="Equip" itemid="26382" level="1" slot="hand" function="onEquipItem">
<vocation name="Knight" />
<vocation name="Elite Knight" showInDescription="0" />
</movevent>
<movevent event="DeEquip" itemid="26382" slot="hand" function="onDeEquipItem" />

I figured it out and didn't add it to movements.xml
 
Last edited:
Back
Top