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

movements

DedicatedOT

New Member
Joined
Jun 13, 2009
Messages
977
Reaction score
4
Location
USA
Hey, how come knights/pally can wield wand/rods? is it possible to doCreatureSay(cid, "Can't use this type", TALKTYPE_ORANGE_1) when knights/pally put on a wand/rod?
 
Yes, to knights and paladins goto data/weapons/weapons.xml
look the lines:
PHP:
<wand id="2182" level="7" mana="2" min="8" max="18" type="earth" event="function" value="default"> <!-- Snakebit Rod -->
	<vocation name="Druid"/>
</wand>

You need add new vocations. Exemple:
PHP:
<wand id="2182" level="7" mana="2" min="8" max="18" type="earth" event="function" value="default"> <!-- Snakebit Rod -->
	<vocation name="Druid"/>
	<vocation name="Paladin"/>
	<vocation name="Knight"/>
</wand>

ok? :)
 
Back
Top