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

Donate Wand?

Majeski20

New Member
Joined
Apr 21, 2008
Messages
602
Reaction score
4
Location
Sweden
Hello! :w00t:

Is it possible to make a "donate wand" that is based on level and magic level?
sorcerers and druids may use it.

If someone can make one, please do! :)

Thanks
Rep
 
add this in items.xml to the wep you want to be the donator wand.
Code:
		<attribute key="weaponType" value="wand"/>
		<attribute key="shootType" value="death"/>
		<attribute key="range" value="3"/>
	</item>
and in weapons/ weapons.xml add this
Code:
	<wand id="ITEM ID" level="100" mana="100" min="100" max="100" type="fire" event="function" value="default"> <!-- Donator wand -->
		<vocation id="2"/>
		<vocation id="6"/>
		<vocation id="10"/>
		
	</wand>
and wich vocations who can use it you just edit.. and add the item id of the item you put the first lines to.
 
add this in items.xml to the wep you want to be the donator wand.
Code:
		<attribute key="weaponType" value="wand"/>
		<attribute key="shootType" value="death"/>
		<attribute key="range" value="3"/>
	</item>
and in weapons/ weapons.xml add this
Code:
	<wand id="ITEM ID" level="100" mana="100" min="100" max="100" type="fire" event="function" value="default"> <!-- Donator wand -->
		<vocation id="2"/>
		<vocation id="6"/>
		<vocation id="10"/>
		
	</wand>
and wich vocations who can use it you just edit.. and add the item id of the item you put the first lines to.

Did you notice that i wanted it based on level / mg level?
 
Back
Top