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

UH for knights only.

Nofus

New Member
Joined
Jul 16, 2009
Messages
415
Reaction score
1
Hey guys, got 8.54 mysql, bla bla.

i want to make UH to be able for KNIGHTS AND ELITE KNIGHTS ONLY. This is how it looks:

Code:
<!-- Healing Runes -->
	<rune name="Antidote Rune" id="2266" allowfaruse="1" charges="1" lvl="15" maglv="0" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/antidote rune.lua"/>
	<rune name="Intense Healing Rune" id="2265" allowfaruse="1" charges="1" lvl="15" maglv="1" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/intense healing rune.lua"/>
	<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>

I tried adding

<vocation name="Knight"/>
<vocation name="Elite Knight"/>
</rune>

still didnt work. help?
 
Hey guys, got 8.54 mysql, bla bla.

i want to make UH to be able for KNIGHTS AND ELITE KNIGHTS ONLY. This is how it looks:

Code:
<!-- Healing Runes -->
	<rune name="Antidote Rune" id="2266" allowfaruse="1" charges="1" lvl="15" maglv="0" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/antidote rune.lua"/>
	<rune name="Intense Healing Rune" id="2265" allowfaruse="1" charges="1" lvl="15" maglv="1" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/intense healing rune.lua"/>
	<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>

I tried adding

<vocation name="Knight"/>
<vocation name="Elite Knight"/>
</rune>

still didnt work. help?
Code:
<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
</rune>
 
Code:
<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
</rune>

ok now it looks like this:

Code:
<!-- Healing Runes -->
	<rune name="Antidote Rune" id="2266" allowfaruse="1" charges="1" lvl="15" maglv="0" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/antidote rune.lua"/>
	<rune name="Intense Healing Rune" id="2265" allowfaruse="1" charges="1" lvl="15" maglv="1" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/intense healing rune.lua"/>
	<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
</rune>

And when i start the server, unable to load spells
 
<rune name="Ultimate Healing Rune" id="2266" allowfaruse="1" charges="0" lvl="100" maglv="4" exhaustion="890" aggressive="0" needtarget="1" blocktype="solid" script="uh.lua">
<vocation name="Super Paladin" />
<vocation name="Super Knight" />
</rune>
 
Code:
<rune name="Ultimate Healing Rune" id="2266" allowfaruse="1" charges="0" lvl="100" maglv="4" exhaustion="890" aggressive="0" needtarget="1" blocktype="solid" script="uh.lua">
<vocation name="Knight" />
<vocation name="Elite Knight" />
</rune>
 
ok now it looks like this:

Code:
<!-- Healing Runes -->
	<rune name="Antidote Rune" id="2266" allowfaruse="1" charges="1" lvl="15" maglv="0" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/antidote rune.lua"/>
	<rune name="Intense Healing Rune" id="2265" allowfaruse="1" charges="1" lvl="15" maglv="1" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/intense healing rune.lua"/>
	<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
</rune>

And when i start the server, unable to load spells
Sorry my bad, i forgot about remove /
Code:
<rune name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="20" maglv="2" exhaustion="1000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua">
	<vocation id="4"/>
	<vocation id="8" showInDescription="0"/>
</rune>
it must work, i checked this.
 
Back
Top