• 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+ Use exori and exori gran at the same time

roriscrave

Advanced OT User
Joined
Dec 7, 2011
Messages
1,210
Solutions
35
Reaction score
206
Hi, i'm using otx 1.3 tibia 8.6 and i can use EXURA + EXORI at the same time...
I want to use EXURA + EXORI + EXORI GRAN at the same time (combo spell)...what i need to do?
OBS: if i use exura + exori + exori gran (get exausted)

Code:
    <instant group="healing" spellid="1" name="Light Healing" words="exura" lvl="8" mana="20" aggressive="0" selftarget="1" cooldown="1000" groupcooldown="1000" needlearn="0" script="healing/light_healing.lua">
        <vocation name="Sorcerer" />
        <vocation name="Druid" />
        <vocation name="Paladin" />
        <vocation name="Master Sorcerer" />
        <vocation name="Elder Druid" />
        <vocation name="Royal Paladin" />
    </instant>
   
        <instant group="attack" spellid="80" name="Berserk" words="exori" lvl="35" mana="115" prem="1" needweapon="1" cooldown="2000" groupcooldown="2000" needlearn="0" script="attack/berserk.lua">
        <vocation name="Knight" />
        <vocation name="Elite Knight" />
    </instant>
   
        <instant group="attack" spellid="105" name="Fierce Berserk" words="exori gran" lvl="90" mana="340" prem="1" needweapon="1" cooldown="2000" groupcooldown="2000" needlearn="0" script="attack/fierce_berserk.lua">
        <vocation name="Knight" />
        <vocation name="Elite Knight" />
    </instant>
 
Last edited:
try this : D
no have ot to test this
Code:
<instant group="healing" spellid="1" name="Light Healing" words="exura" lvl="8" mana="20" aggressive="0" selftarget="1" cooldown="1000" groupcooldown="0" needlearn="0" script="healing/light_healing.lua">
        <vocation name="Sorcerer" />
        <vocation name="Druid" />
        <vocation name="Paladin" />
        <vocation name="Master Sorcerer" />
        <vocation name="Elder Druid" />
        <vocation name="Royal Paladin" />
    </instant>
  
        <instant group="attack" spellid="80" name="Berserk" words="exori" lvl="35" mana="115" prem="1" needweapon="1" cooldown="2000" groupcooldown="0" needlearn="0" script="attack/berserk.lua">
        <vocation name="Knight" />
        <vocation name="Elite Knight" />
    </instant>
  
        <instant group="attack" spellid="105" name="Fierce Berserk" words="exori gran" lvl="90" mana="340" prem="1" needweapon="1" cooldown="2000" groupcooldown="0" needlearn="0" script="attack/fierce_berserk.lua">
        <vocation name="Knight" />
        <vocation name="Elite Knight" />
    </instant>
 
try this : D
no have ot to test this
Code:
<instant group="healing" spellid="1" name="Light Healing" words="exura" lvl="8" mana="20" aggressive="0" selftarget="1" cooldown="1000" groupcooldown="0" needlearn="0" script="healing/light_healing.lua">
        <vocation name="Sorcerer" />
        <vocation name="Druid" />
        <vocation name="Paladin" />
        <vocation name="Master Sorcerer" />
        <vocation name="Elder Druid" />
        <vocation name="Royal Paladin" />
    </instant>
 
        <instant group="attack" spellid="80" name="Berserk" words="exori" lvl="35" mana="115" prem="1" needweapon="1" cooldown="2000" groupcooldown="0" needlearn="0" script="attack/berserk.lua">
        <vocation name="Knight" />
        <vocation name="Elite Knight" />
    </instant>
 
        <instant group="attack" spellid="105" name="Fierce Berserk" words="exori gran" lvl="90" mana="340" prem="1" needweapon="1" cooldown="2000" groupcooldown="0" needlearn="0" script="attack/fierce_berserk.lua">
        <vocation name="Knight" />
        <vocation name="Elite Knight" />
    </instant>
Won't work that way. Now you can:
  • Use any healing spell immediately after exura
  • Use any attack spell after exori and exori gran, now you can go with exori ico > exori > exori gran in a single cast.
 
Back
Top