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

Tfs 8.7 problem wands/rods

miquelito97

New Member
Joined
Apr 4, 2010
Messages
53
Reaction score
0
I HAVE TFS 8.7 MYSTIC SPIRIT, BUT WHEN I USE WAND OR ROD IT DOESNT WORK. :blink:
Help me, thx
 
weapons.xml:
Lua:
	<wand id="2182" level="7" mana="2" min="8" max="18" type="earth" event="function" value="default"> <!-- Snakebite Rod -->
		<vocation id="2"/>
	</wand>
	<wand id="2185" level="19" mana="5" min="27" max="33" type="death" event="function" value="default"> <!-- Necrotic Rod -->
		<vocation id="2"/>
	</wand>
	<wand id="8911" level="22" mana="5" min="27" max="33" type="ice" event="function" value="default"> <!-- Northwind Rod -->
		<vocation id="2"/>
	</wand>
	<wand id="2181" level="26" mana="8" min="42" max="48" type="earth" event="function" value="default"> <!-- Terra Rod -->
		<vocation id="2"/>
	</wand>
	<wand id="2183" level="33" mana="13" min="55" max="75" type="ice" event="function" value="default"> <!-- Hailstorm Rod -->
		<vocation id="2"/>
	</wand>
	<wand id="8912" level="37" mana="13" min="55" max="75" type="earth" event="function" value="default"> <!-- Springsprout Rod -->
		<vocation id="2"/>
	</wand>
	<wand id="8910" level="42" mana="13" min="55" max="75" type="death" event="function" value="default"> <!-- Underworld Rod -->
		<vocation id="2"/>
	</wand>
and:
Lua:
	<wand id="2191" level="13" mana="3" min="13" max="25" type="fire" event="function" value="default"> <!-- Wand of Dragonbreath -->
		<vocation id="1"/>
	</wand>
	<wand id="2188" level="19" mana="5" min="27" max="33" type="death" event="function" value="default"> <!-- Wand of Decay -->
		<vocation id="1"/>
	</wand>
	<wand id="8921" level="22" mana="5" min="27" max="33" type="fire" event="function" value="default"> <!-- Wand of Draconia -->
		<vocation id="1"/>
	</wand>
	<wand id="2187" level="33" mana="13" min="55" max="75" type="fire" event="function" value="default"> <!-- Wand of Inferno -->
		<vocation id="1"/>
	</wand>
	<wand id="8920" level="37" mana="13" min="55" max="75" type="energy" event="function" value="default"> <!-- Wand of Starmstorm -->
		<vocation id="1"/>
	</wand>
	<wand id="8922" level="42" mana="13" min="55" max="75" type="death" event="function" value="default"> <!-- Wand of Voodoo -->
		<vocation id="1"/>
	</wand>
at leaast that is my weapons.xml and everything works fine
 
Weapons.xml
<wand id="2182" level="7" mana="2" min="8" max="18" type="earth" event="function" value="default"> <!-- Snakebite Rod -->
<vocation id="2"/>
</wand>
<wand id="2185" level="19" mana="5" min="27" max="33" type="death" event="function" value="default"> <!-- Necrotic Rod -->
<vocation id="2"/>
</wand>
<wand id="8911" level="22" mana="5" min="27" max="33" type="ice" event="function" value="default"> <!-- Northwind Rod -->
<vocation id="2"/>
</wand>
<wand id="2181" level="26" mana="8" min="42" max="48" type="earth" event="function" value="default"> <!-- Terra Rod -->
<vocation id="2"/>
</wand>
<wand id="2183" level="33" mana="13" min="55" max="75" type="ice" event="function" value="default"> <!-- Hailstorm Rod -->
<vocation id="2"/>
</wand>
<wand id="8912" level="37" mana="13" min="55" max="75" type="earth" event="function" value="default"> <!-- Springsprout Rod -->
<vocation id="2"/>
</wand>
<wand id="8910" level="42" mana="13" min="55" max="75" type="death" event="function" value="default"> <!-- Underworld Rod -->
<vocation id="2"/>
</wand>

<wand id="2191" level="13" mana="3" min="13" max="25" type="fire" event="function" value="default"> <!-- Wand of Dragonbreath -->
<vocation id="1"/>
</wand>
<wand id="2188" level="19" mana="5" min="27" max="33" type="death" event="function" value="default"> <!-- Wand of Decay -->
<vocation id="1"/>
</wand>
<wand id="8921" level="22" mana="5" min="27" max="33" type="fire" event="function" value="default"> <!-- Wand of Draconia -->
<vocation id="1"/>
</wand>
<wand id="2187" level="33" mana="13" min="55" max="75" type="fire" event="function" value="default"> <!-- Wand of Inferno -->
<vocation id="1"/>
</wand>
<wand id="8920" level="37" mana="13" min="55" max="75" type="energy" event="function" value="default"> <!-- Wand of Starmstorm -->
<vocation id="1"/>
</wand>
<wand id="8922" level="42" mana="13" min="55" max="75" type="death" event="function" value="default"> <!-- Wand of Voodoo -->
<vocation id="1"/>
</wand>
Items.xml (wand)
<item id="2190" name="wand of vortex" article="a">
<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>
items.xml(rod)
<item id="2182" name="snakebite rod" article="a">
<attribute key="description" value="It seems to twitch and quiver as if trying to escape your grip." />
<attribute key="weight" value="1900" />
<attribute key="weaponType" value="wand" />
<attribute key="shootType" value="smallearth" />
<attribute key="range" value="3" />
</item>
 
Back
Top