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

Need help making a wand!

clone

New Member
Joined
Jun 16, 2007
Messages
412
Reaction score
1
I am trying to make custom wands for my upcoming server and i have been trying to get the wands to use custom hit types for example i want my wand to hit Hit type # 31 the way i found this looktype was with !z "31 using tfs of course =D so if anyone could post a script for a WAND using the hit type look i want PLEASE do so :)
 
in items.xml change the wand to this
and change the needed stuff :)
Code:
	<item id="WANDID" article="a" name="WAND NAME">
		<attribute key="description" value="WAND DESCRIPTION"/>
		<attribute key="weight" value=WAND CAP"/>
		<attribute key="weaponType" value="wand"/>
		<attribute key="shootType" value="31"/>
		<attribute key="range" value="4"/>
	</item>
in weapons.xml after
Code:
	<wand id="2187" level="33" mana="13" min="55" max="75" type="fire" function="internalLoadWeapon"> <!-- Wand of Inferno -->
		<vocation name="Sorcerer"/>
	</wand>
add this
Code:
<wand id="WAND ID" level="LEVEL NEEDED TO USE THE WAND" mana="MANA NEEDED PER HIT" min="MIN HIT" max="MAX HIT" type="31" function="internalLoadWeapon"> <!-- WAND NAME -->
		<vocation name="VOC NEEDED TO USE THE WAND"/>
	</wand>
 
Back
Top