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

Lua Adding vocation into a rune[SOLVED]

Sizaro, on spells.xml, where should i place it?

Code:
rune name="Vip Ultimate Healing Rune" id="2282" allowfaruse="1" charges="1" lvl="150" maglv="8" exhaustion="400" aggressive="0" needtarget="1" blocktype="solid" script="healing/vip uh.lua"/>

There?
 
Sizaro, on spells.xml, where should i place it?

Code:
rune name="Vip Ultimate Healing Rune" id="2282" allowfaruse="1" charges="1" lvl="150" maglv="8" exhaustion="400" aggressive="0" needtarget="1" blocktype="solid" script="healing/vip uh.lua"/>

There?

Where you see something like "Suddendeath" and below one of those lines.

However, it doesn't really matter where you put the line, just put it somewhere.
 
PHP:
	<rune name="Vip Ultimate Healing Rune" id="2282" allowfaruse="1" charges="1" lvl="150" maglv="8" exhaustion="400" aggressive="0" needtarget="1" blocktype="solid" script="healing/vip uh.lua">
		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>
	</rune>
 
Where you see something like "Suddendeath" and below one of those lines.

However, it doesn't really matter where you put the line, just put it somewhere.

But what should i put? I mean, im on the spells.xml, ok.
Then i head into the
Code:
rune name="Vip Ultimate Healing Rune" id="2282" allowfaruse="1" charges="1" lvl="150" maglv="8" exhaustion="400" aggressive="0" needtarget="1" blocktype="solid" script="healing/vip uh.lua"/>
line.

What should i add there or elsewhere?
I know i seem dumb but i don't know what you mean with "it doesn't really matter where you put the line, just put it somewhere". What line should i put? :P
 
PHP:
	<rune name="Vip Ultimate Healing Rune" id="2282" allowfaruse="1" charges="1" lvl="150" maglv="8" exhaustion="400" aggressive="0" needtarget="1" blocktype="solid" script="healing/vip uh.lua">
		<vocation name="Knight"/>
		<vocation name="Elite Knight" showInDescription="0"/>
		<vocation name="Paladin"/>
		<vocation name="Royal Paladin" showInDescription="0"/>
	</rune>

:O going to test, im sure i'll work, if so, rep :D
 
Did you check out my post? Just replace the existing data for that rune with that from my post.

Edit: Seems you've had missed it.
 
Back
Top