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

weapons for custom vocations

IMac

entrepreneur
Joined
May 31, 2009
Messages
2,482
Reaction score
16
Location
Pluto
how do i add weapons that only custom vocations can use? for example wands can only be used by sorc and rods by druids
 
Data/Weapons/Weapons.xml

There u will find like
Code:
 <wand id="2190" level="7" mana="2" min="8" max="18" type="energy" event="function" value="default">
- <!--  Wand of Vortex --> 
  <vocation id="1" /> 
  </wand>

++Rep if i helped.
 
Data/Weapons/Weapons.xml

There u will find like
Code:
 <wand id="2190" level="7" mana="2" min="8" max="18" type="energy" event="function" value="default">
- <!--  Wand of Vortex --> 
  <vocation id="1" /> 
  </wand>

++Rep if i helped.

but i dont see voc id "1"
PHP:
<wand id="2425" level="10" mana="2" min="10" max="20" type="death" event="function" value="default">
	   <vocation name="Alchemist"/>
	 </wand>

i added
 
Back
Top