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

Rec level for runes and spells!

Saj

Remember my name
Joined
Feb 26, 2008
Messages
2,127
Reaction score
6
hey, how can I do rec level on runes and spells? is there anyway to do that?
 
There is rec level on the sd.

Code:
<rune name="Sudden Death" id="2268" allowfaruse="1" charges="3" [b]lvl="45"[/b] maglv="15" exhaustion="1000" needtarget="1" blocktype="solid" script="attack/sudden death.lua"/>

Add
Code:
lvl="<the level>"
in spells.xml
 
Yeah, do it in the .xml part, there you can as well add vocations.

for an example:
Code:
	<rune name="Paralyze" id="2278" allowfaruse="1" charges="1" lvl="54" maglv="18" mana="1400" needtarget="1" blocktype="solid" script="support/paralyze rune.lua"/>

Add vocations by removing the end tag, and extend it a little:
Code:
	<rune name="Paralyze" id="2278" allowfaruse="1" charges="1" lvl="54" maglv="18" mana="1400" needtarget="1" blocktype="solid" script="support/paralyze rune.lua">
		<vocation name="Druid" />
		<vocation name="Elder Druid" />
	</rune>
 
Back
Top