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

Custom/Self created Wands and Rods!

  • Thread starter Thread starter LordVissie
  • Start date Start date
L

LordVissie

Guest
Hey guys, I'm looking for 3 custom wands/rods for in my server, Does anyone has 3 custom wand scripts wich I can use for my server?

I'm pretty terrible at scripting myself so I can't really create them and I didn't saw much other topics about custom wands/rods on otland.

Who can help me? :D

Kind regards,
LordVissie :)
 
So it's REQUEST, not SUPPORT question as you want to get ready script and got nothing. Better post it in RESOURCES REQUEST board:
https://otland.net/forums/requests.132/

SUPPORT:
You can create simple wands without any script. You just need to edit data/items/items.xml and data/weapons/weapons.xml

Example items.xml script (configure animations, range):

PHP:
<item id="2183" article="a" name="hailstorm rod">
<attribute key="description" value="It grants you the power of striking your foes with furious hailstorms." />
<attribute key="weight" value="2700" />
<attribute key="weaponType" value="wand" />
<attribute key="shootType" value="smallice" />
<attribute key="range" value="3" />
</item>

Example weapons.xml script (level, mana, damage value, damage type):
PHP:
<wand id="2183" level="33" mana="13" min="55" max="75" type="ice"> <!-- Hailstorm Rod -->
<vocation name="Druid" />
</wand>
 
Oh sry I'm quite new here tought I could just post it here in support.

Oh I see Thanks but the example in weapons.xml script needed to be like this

Code:
<wand id="7958" mana="10" min="200" max="400" type="ice" event="function" value="default">
<vocation id="2"/>
<vocation id="6"/>
</wand>

(just for other people who are also looking for this)
With the event and value. Really thanks for helping it worked :D
 
Back
Top