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

Rods,Wands

Spankarn

New Member
Joined
Jul 1, 2010
Messages
101
Reaction score
1
Yo!
I Wounder how can i make Rods and wands better?
and how can i make new wands?

Here's a example: If i take a staff and want it to be a rod what is the script and everything?
and how do i change the damage on wands?
Help me!
 
to make wands go to weapons
and add this
Code:
<wand id="XXXX" level="XXX" mana="50" min="100" max="200" type="Ice" event="function" value="default"> <!-- Freezing Star -->
		<vocation id="2"/>---------Sorc---------
		<vocation id="1"/> --------Druid-----------
		<vocation id="5"/>
		<vocation id="6"/>
	</wand>
then go to items
Code:
 <attribute key="weaponType" value="wand" />
        <attribute key="shootType" value="ice" />
        <attribute key="range" value="3" />
 
Back
Top