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

[HELP] Wear a new weapon

Hyagosrs

Member
Joined
Mar 10, 2018
Messages
94
Solutions
1
Reaction score
11
i can't fit this rod in my hand and i don't know why!! it says: You can't dress this object there.

my item.xml:
Lua:
    <item id="25918" article="a" name="Tales Rod"/>
        <attribute key="weaponType" value="wand" />
        <attribute key="quicklootcategory" value="weaponwand" />
        <attribute key="range" value="5" />
        <attribute key="shootType" value="smallearth" />
        <attribute key="magiclevelpoints" value="3" />
        <attribute key="absorbPercentEnergy" value="8" />
        <attribute key="weight" value="3700" />
        <attribute key="imbuingSlots" value="2" />

my movements.xml:
Code:
    <movevent event="Equip" itemid="25918" slot="hand" level="8" function="onEquipItem"> <!-- Tales Rod -->
        <vocation name="Druid" />
        <vocation name="Elder Druid" showInDescription="0" />

and my weapons.xml:
Code:
    <wand id="25918" level="1" mana="15" min="590" max="620" type="ice"> <!-- Tales Rod -->
        <vocation name="Druid" />
    </wand>


i really don't know what to do.
 
You have in on Items.xml? and check this line

<movevent event="Equip" itemid="25918" slot="hand" level="8" function="onEquipItem">
<vocation name="Druid" />
<vocation name="Elder Druid" showInDescription="0" />
</movevent>
<movevent event="DeEquip" itemid="25918" slot="hand" level="8" function="onDeEquipItem" />
 
</movevent> Closing movement tag? And put the same level in weapons and movements.

Try to see if got some message in your character and if you char is druid.
 
i fixed it, the problem was a little sign in items.xml
i changed this
Lua:
<item id="25918" article="a" name="Tales Rod"/>
to this
Code:
<item id="25918" article="a" name="Tales Rod">

and now it works, but thanks for helping!!
 
Back
Top