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

Lua wand of vortex not damage

darkmu

Well-Known Member
Joined
Aug 26, 2007
Messages
278
Solutions
1
Reaction score
50
Location
Paraná,Brazil
Wand of vortex is only wand not damage on monster..

the effect take off but not damage .. why?
 
Take a look at weapons.xml if the min and max damage is set correctly. You can also take a look at items.xml.

This is how it should be in weapons.xml:
Code:
    <wand id="2190" level="7" mana="3" min="10" max="30" type="energy"> <!-- Wand of Vortex -->
        <vocation name="Sorcerer" />
    </wand>
items.xml:
Code:
    <item id="2190" article="a" name="wand of vortex">
        <attribute key="description" value="Surges of energy rush through the tip of this wand." />
        <attribute key="weight" value="1900" />
        <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="energy" />
        <attribute key="range" value="3" />
    </item>

Also always post your TFS version.
Rules of the support board
 
Back
Top