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

[Request] Donation Wand/Rod!

nicktm

Otland Helper
Joined
Oct 9, 2009
Messages
106
Reaction score
3
Location
Griffin, GA
Ok Guy's I Need A Simple Donation Wand or Rod that hits around min=20k max=30k, That shoots ice! And could you please tell me how to add it in, i tried a script but it failed! Haha.! Rep+!​
~Nick :ninja:
 
Try to read some tutorials, it's pretty simple...

But do like this:

.../data/weapons/weapons.xml:

Add this:
Code:
	<wand id="[COLOR="#FF0000"]2182[/COLOR]" level="7" mana="30" min="20000" max="30000" type="ice" event="function" value="default"> <!-- Donate Wand -->
		<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>
	</wand>
(change the red to the item id)
under this:
XML:
	<wand id="2182" level="7" mana="2" min="8" max="18" type="earth" event="function" value="default"> <!-- Snakebite Rod -->
		<vocation id="2"/>
		<vocation id="6" showInDescription="0"/>
	</wand>


When you've done that, go to:

.../data/items/items.xml:

find the wand you wanted to the donation wand and then put this attribute:

XML:
		<attribute key="weaponType" value="wand" />

under this attribute:

XML:
		<attribute key="weight" value="2850" />

POFF! You have just created a new wand!
 
Back
Top