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

how would i go about importing a sprite wand to my server?

first open up items.xml and change
Code:
	<item id="2453" article="an" name="arcane staff">
		<attribute key="weight" value="4000" />
		<attribute key="defense" value="30" />
		<attribute key="attack" value="50" />
		<attribute key="weaponType" value="club" />
		<attribute key="slotType" value="two-handed" />
	</item>
to
Code:
	<item id="2453" article="a" name="sprite wand">
		<attribute key="weight" value="4000" />
		<attribute key="defense" value="30" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="[COLOR="Red"]death[/COLOR]" />
		<attribute key="range" value="[COLOR="Blue"]10[/COLOR]" />
	</item>
change the red marked word for whatever shoottype you want(holy,ice,earth,fire,death,energy or smallice)
change the blue marked word for how much range you want(1-15)
then go into your weapon.xml search for 2453
and delete this line
Code:
	<melee id="2453" level="75" unproperly="1" event="function" value="default"/>
then go up again to wands in weapons.xml
and add this under wand of voodoo
Code:
	<wand id="2453" level="1" <!-- Level to use  --> mana="13" <!-- How much mana it will take --> min="200" max="400" <!-- Damage -->type="holy" <!-- Damage type --> event="function" value="default"> <!-- Sprite Wand -->
		<vocation id="1"/> <!-- Use this if you want sorcers only to use -->
		<vocation id="2"/> <!-- Use this if you want druid only to use or use both for both vocs -->
	</wand>
I think I deserve some rep for good guide? :D
 
Back
Top Bottom