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

Solved Magic spells with voc restriction works for all TFS 1.2

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
923
Location
Chile
hello, i have these 3 spells:
Code:
<instant name="exevo san mas vip" words="exevo san mas vip" lvl="200" groups="1,800" maglv="15" mana="300" exhaustion="250" prem="0" needlearn="0" blockwalls="0" aggressive="1" script="exevo mas san vip.lua">
           <vocation id="Paladin"/>
           <vocation id="Royal Paladin"/>
</instant>
<instant name="exori gran vip" words="exori gran vip" lvl="200" groups="1,800" mana="150" prem="0" needweapon="1" exhaustion="250" needlearn="0" script="exori gran vip.lua">
        <vocation id="Knight"/>
        <vocation id="Elite Knight"/>
</instant>
<instant name="sorcdruid vip" words="exevo gran mas vip" lvl="200" groups="1,800" maglv="60" mana="300" exhaustion="250" prem="0" needlearn="0" blockwalls="0" aggressive="1" script="sorcdruid vip.lua">
            <vocation id="Sorcerer"/>
            <vocation id="Master Sorcerer"/>
            <vocation id="Druid"/>
            <vocation id="Elder Druid"/>
</instant>


and as you can see it has vocation restrictions, but all 3 can be used by any vocation :(
im using TFS 1.2
does any know why this happens?
 
Code:
<vocation name="Knight" />
instead of
Code:
<vocation id="Knight"/>
 
Solution
Back
Top