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

TFS 1.X+ TFS 1.2 - HOW TO DISABLE USING SPELLS IN PZ BY PLAYERS?

Xedoxo

Member
Joined
Oct 24, 2010
Messages
117
Reaction score
15
Hi,

Like in thread title, i dont have any configuration about protection zone in config.lua. So where should i start to disable all spells in PZ?
TFS 1.2 - 8.00 Tibia.
 
Solution
add to spells xml
Lua:
aggressive="1"
Example
Code:
<instant name="mas nara" words="exevo gran mas frigo" lvl="60" maglv="40" mana="1200" soul="0" aggressive="1" exhaustion="1000" prem="1" enabled="1" script="attack/eternal winter.lua">
        <vocation name="Druid"/>
        <vocation name="Elder Druid"/>
                <vocation name="Holy Priest"/>
                <vocation name="Holy Priest +1"/>
                <vocation name="Holy Priest +2"/>
        </instant>
add to spells xml
Lua:
aggressive="1"
Example
Code:
<instant name="mas nara" words="exevo gran mas frigo" lvl="60" maglv="40" mana="1200" soul="0" aggressive="1" exhaustion="1000" prem="1" enabled="1" script="attack/eternal winter.lua">
        <vocation name="Druid"/>
        <vocation name="Elder Druid"/>
                <vocation name="Holy Priest"/>
                <vocation name="Holy Priest +1"/>
                <vocation name="Holy Priest +2"/>
        </instant>
 
Solution
Back
Top