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

Adori blank spell

Infernus

Member
Joined
Jul 7, 2008
Messages
253
Reaction score
6
Yeah im looking for the script for the adori blank spell. I searched couldnt find.

Rep++
 
try this, server/data/spells/spells.xml
Code:
<conjure name="conjure blank rune" words="adori blank" lvl="10" mana="10" soul="0" prem="0" conjureId="2260" conjureCount="1" exhaustion="1000" needlearn="0" event="function" value="conjureItem">
		<vocation id="1"/>
		<vocation id="5"/>
		<vocation id="2"/>
		<vocation id="6"/>
</conjure>
 
Last edited:
Paladins should also be able create this spell (Voc id 3&7)

Also, one of the codes will work, check your spells.xml if you use <vocation id=""/>
or if you use <vocation name=""/>

and take what ever code have same code as your xml use
Code:
<conjure name="conjure blank rune" words="adori blank" lvl="10" mana="10" soul="0" prem="0" conjureId="2260" conjureCount="1" exhaustion="1000" needlearn="0" event="function" value="conjureItem">
		<vocation id="1"/>
		<vocation id="2"/>
		<vocation id="3"/>
		<vocation id="5"/>
		<vocation id="6"/>
		<vocation id="7"/>
</conjure>

or

Code:
<conjure name="conjure blank rune" words="adori blank" lvl="10" mana="10" soul="0" prem="0" conjureId="2260" conjureCount="1" exhaustion="1000" needlearn="0" event="function" value="conjureItem">
		<vocation name="Sorcerer"/>
		<vocation name="druid"/>
		<vocation name="paladin"/>
		<vocation name="master sorcerer"/>
		<vocation name="elder druid"/>
		<vocation name="royal paladin"/>
</conjure>
 
Back
Top