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

Solved Could't load Spells..

domyno2837

Member
Joined
Oct 28, 2013
Messages
168
Reaction score
5
Hello OTLand,

i wanna changed that only Knights can use the "Ultimate Healing Rune"

my spells.xml works fine.. but when i add from this:

Code:
    <rune group="healing" spellid="5" name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="24" maglv="4" exhaustion="2000" groupcooldown="2000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>

that part:
Code:
        <vocation name="Knight"/>
        <vocation name="Elite Knight" showInDescription="0"/>

to this:

Code:
    <rune group="healing" spellid="5" name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="24" maglv="4" exhaustion="2000" groupcooldown="2000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua"/>
        <vocation name="Knight"/>
        <vocation name="Elite Knight" showInDescription="0"/>
    </rune>

then i can't start my server.. i only can see "Could't load Spells!"

Anyone can help me? :eek:
 
Code:
    <rune group="healing" spellid="5" name="Ultimate Healing Rune" id="2273" allowfaruse="1" charges="1" lvl="24" maglv="4" exhaustion="2000" groupcooldown="2000" aggressive="0" needtarget="1" blocktype="solid" script="healing/ultimate healing rune.lua">
        <vocation name="Knight"/>
        <vocation name="Elite Knight" showInDescription="0"/>
    </rune>
Try this.
 
removed ' / ' in:

Code:
script="healing/ultimate healing rune.lua"/>
so it looks like this:
Code:
script="healing/ultimate healing rune.lua">

That was typical error, which happens to most of us xD.
 
Back
Top