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

Wand/rod of mayhem attacks as fist

biaggio12

Member
Joined
Aug 22, 2009
Messages
63
Reaction score
10
My mayhems are attacking as fist. Only those charged. Basic wand/rod is working like it should.
Anyone know how this is happening ? Where do i have too look for fixing this ? All attributes in items.xml are correct. So do in weapons.xml
Code:
<item id="25887" article="a" name="wand of mayhem">
        <attribute key="description" value="This weapon can be charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    </item>
    <item id="26318" article="a" name="wand of mayhem (charged)">
        <attribute key="description" value="This weapon is charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    <!--<attribute key="skillcriticalchance" value="10" />
        <attribute key="skillcriticaldamage" value="20" />-->
        <attribute key="transformEquipTo" value="25897" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="25897" article="a" name="wand of mayhem (charged)">
        <attribute key="description" value="This weapon is charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
        <attribute key="skillcriticalchance" value="10" />
        <attribute key="skillcriticaldamage" value="20" />
        <attribute key="decayTo" value="25887" />
        <attribute key="transformDeEquipTo" value="26318" />
        <attribute key="duration" value="72000" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="26319" article="a" name="wand of mayhem (heavily charged)">
        <attribute key="description" value="This weapon is heavily charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    <!--<attribute key="skillcriticalchance" value="15" />
        <attribute key="skillcriticaldamage" value="25" />-->
        <attribute key="transformEquipTo" value="25907" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="25907" article="a" name="wand of mayhem (heavily charged)">
        <attribute key="description" value="This weapon is heavily charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
        <attribute key="skillcriticalchance" value="15" />
        <attribute key="skillcriticaldamage" value="25" />
        <attribute key="decayTo" value="25887" />
        <attribute key="transformDeEquipTo" value="26319" />
        <attribute key="duration" value="36000" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="26320" article="a" name="wand of mayhem (overcharged)">
        <attribute key="description" value="This weapon is over charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="range" value="3" />
        <attribute key="magiclevelpoints" value="1" />
        <attribute key="skillcriticalchance" value="10" />
        <attribute key="skillcriticaldamage" value="75" />
        <attribute key="transformEquipTo" value="25917" />
        <attribute key="stopduration" value="1" />
        <attribute key="showduration" value="1" />
    </item>
    <item id="25917" article="a" name="wand of mayhem (overcharged)">
        <attribute key="description" value="This weapon is over charged." />
        <attribute key="weight" value="3500" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="magiclevelpoints" value="1" />
        <attribute key="range" value="3" />
        <attribute key="skillcriticalchance" value="10" />
        <attribute key="skillcriticaldamage" value="60" />
        <attribute key="decayTo" value="25887" />
        <attribute key="transformDeEquipTo" value="26320" />
        <attribute key="duration" value="54000" />
        <attribute key="showduration" value="1" />
    </item>
 
Code:
<!-- Rods -->
    <wand id="23721" level="1" mana="1" min="3" max="7" type="ice"> <!-- The Chiller -->
        <vocation name="Druid" />
    </wand>
    <wand id="2182" level="7" mana="2" min="8" max="18" type="earth"> <!-- Snakebit Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="2186" level="13" mana="3" min="13" max="25" type="ice"> <!-- Moonlight Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="2185" level="19" mana="5" min="27" max="33" type="death"> <!-- Necrotic Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="8911" level="22" mana="5" min="27" max="33" type="ice"> <!-- Northwind Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="2181" level="26" mana="8" min="42" max="48" type="earth"> <!-- Terra Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="24839" level="37" mana="13" min="55" max="70" type="earth"> <!-- ogre sceptra -->
        <vocation name="Druid" />
    </wand>
    <wand id="2183" level="33" mana="13" min="55" max="75" type="ice"> <!-- Hailstorm Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="8912" level="37" mana="13" min="55" max="75" type="earth"> <!-- Springsprout Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="8910" level="42" mana="13" min="55" max="75" type="death"> <!-- Underworld Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="13872" level="40" mana="13" min="55" max="75" type="ice"> <!-- Shimmer Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="18411" level="65" mana="17" min="70" max="100" type="earth"> <!-- Muck Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="18412" level="65" mana="17" min="70" max="100" type="ice"> <!-- Glacial Rod -->
        <vocation name="Druid" />
    </wand>
    <wand id="25995" level="100" mana="18" min="70" max="105" type="ice"> <!-- Rod of Carving -->
        <vocation name="Druid" />
    </wand>
    <wand id="25888" level="100" mana="18" min="70" max="105" type="ice"> <!-- Rod of Mayhem -->
        <vocation name="Druid" />
    </wand>
    <wand id="25955" level="100" mana="18" min="70" max="105" type="ice"> <!-- Rod of Remedy -->
        <vocation name="Druid" />
    </wand>
    <wand id="29004" level="80" mana="17" min="63" max="77" type="energy"> <!-- Wand blossom -->
        <vocation name="Sorcerer" />
        <vocation name="Druid" />
    </wand>   
    <!-- Wands -->
    <wand id="23719" level="1" mana="1" min="3" max="7" type="fire"> <!-- The Scorcher -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="2190" level="7" mana="2" min="8" max="18" type="energy"> <!-- Wand of Vortex -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="2191" level="13" mana="3" min="13" max="25" type="fire"> <!-- Wand of Dragonbreath -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="2188" level="19" mana="5" min="27" max="33" type="death"> <!-- Wand of Decay -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="8921" level="22" mana="5" min="27" max="33" type="fire"> <!-- Wand of Draconia -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="2189" level="26" mana="8" min="42" max="48" type="energy"> <!-- Wand of Cosmic Energy -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="25421" level="65" mana="17" min="70" max="80" type="energy"> <!-- Wand of Cosmic Energy -->
        <vocation name="Sorcerer" />
        <vocation name="Druid" />
    </wand>
    <wand id="2187" level="33" mana="13" min="55" max="75" type="fire"> <!-- Wand of Inferno -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="8920" level="37" mana="13" min="55" max="75" type="energy"> <!-- Wand of Starmstorm -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="8922" level="42" mana="13" min="55" max="75" type="death"> <!-- Wand of Voodoo -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="13760" level="37" mana="13" min="55" max="75" type="death"> <!-- Wand of Dimensions -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="13880" level="40" mana="13" min="55" max="75" type="energy"> <!-- Shimmer Wand -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="18390" level="65" mana="17" min="70" max="100" type="energy"> <!-- Wand of Defiance -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="18409" level="65" mana="17" min="70" max="100" type="fire"> <!-- Wand of Everblazing -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="29059" level="41" mana="20" min="80" max="100" type="death" action="removecharge"> <!-- Wand of darkness -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="25991" level="100" mana="18" min="70" max="105" type="energy"> <!-- Wand of Carving -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="25887" level="100" mana="18" min="70" max="105" type="energy"> <!-- Wand of Mayhem -->
        <vocation name="Sorcerer" />
    </wand>
    <wand id="25951" level="100" mana="18" min="70" max="105" type="energy"> <!-- Wand of Remedy -->
        <vocation name="Sorcerer" />
    </wand>
 
Code:
22:56 You see a rod of mayhem.
It can only be wielded properly by druids of level 250 or higher.
It weighs 35.00 oz.
This weapon can be charged.
Item ID: 25888
Position: 32345, 32251, 7
 
Code:
22:56 You see a rod of mayhem.
It can only be wielded properly by druids of level 250 or higher.
It weighs 35.00 oz.
This weapon can be charged.
Item ID: 25888
Position: 32345, 32251, 7
it's not in the items.xml snippet you posted, so you must have another one somewhere
either way copy that registration from weapons.xml for 25888 and replace the id with each rod of mayhem
 
Back
Top