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

You cannot dress this object there

Ganjita

Active Member
Joined
Dec 15, 2009
Messages
494
Reaction score
37
i have that problem when i try put the armor, can someone help me?

Code:
You cannot dress this object there
 
i have that on items.xml

Code:
<item id="8866" article="a" name="mage coat">
        <attribute key="weight" value="1900" />
        <attribute key="armor" value="8" />
        <attribute key="slotType" value="legs" />
        <attribute key="magiclevelpoints" value="3" />
        <attribute key="absorbPercentIce" value="5" />
        <attribute key="absorbPercentEnergy" value="5" />
        <attribute key="absorbPercentEarth" value="5" />
        <attribute key="absorbPercentFire" value="5" />
        <attribute key="absorbPercentDeath" value="5" />
    </item>

and that on moveements.xml

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