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

Lua Spells diffrend exhauset.

Mr Zool

New Member
Joined
Jul 5, 2012
Messages
216
Reaction score
2
I wonder how to make that spell diffrend exhauset, and possible to spell in same time :
SD + Utani gran hur + Healing spell.

Like it is on real tibia.
I find way to make 2 spells in 1 time.
Healing spell - agressive 0
Haste - agressive 1


I would love to make diffrend exhauset for :
all Haste
Mana shield
.. any idea ? :(
 
Last edited:
hmm its too long o.O
show what i need to change
Code:
<instant name="Strong Haste" allowfaruse="0" words="utani gran hur" lvl="20" mana="100" prem="1" aggressive="0" selftarget="1" exhaustion="1000" needlearn="0" event="script" value="support/strong haste.lua">

        <vocation name="Sorcerer"/>

        <vocation name="Druid"/>

        <vocation name="Master Sorcerer"/>

        <vocation name="Elder Druid"/>

    </instant>
Code:
    <instant name="Intense Healing" words="exura gran" lvl="11" mana="70" aggressive="0" selftarget="1" exhaustion="1000" needlearn="0" event="script" value="healing/intense healing.lua">

        <vocation name="Sorcerer"/>

        <vocation name="Druid"/>

        <vocation name="Paladin"/>

        <vocation name="Master Sorcerer"/>

        <vocation name="Elder Druid"/>

        <vocation name="Royal Paladin"/>

    </instant>

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

        <vocation name="Druid"/>

        <vocation name="Elder Druid" showInDescription="0"/>

        <vocation name="Sorcerer"/>

        <vocation name="Master Sorcerer" showInDescription="0"/>

        <vocation name="Paladin"/>

        <vocation name="Royal Paladin" showInDescription="0"/>
 
You need to change exhaustion time ! :)

I think 1000 is equal to 1 Second so exhaust 500 is a half second.

Intense Healing

PHP:
    <instant name="Intense Healing" words="exura gran" lvl="11" mana="70" aggressive="0" selftarget="1" exhaustion="500" needlearn="0" event="script" value="healing/intense healing.lua">

        <vocation name="Sorcerer"/>

        <vocation name="Druid"/>

        <vocation name="Paladin"/>

        <vocation name="Master Sorcerer"/>

        <vocation name="Elder Druid"/>

        <vocation name="Royal Paladin"/>

    </instant>


Strong Haste

PHP:
nstant name="Strong Haste" allowfaruse="0" words="utani gran hur" lvl="20" mana="100" prem="1" aggressive="0" selftarget="1" exhaustion="500" needlearn="0" event="script" value="support/strong haste.lua">

        <vocation name="Sorcerer"/>

        <vocation name="Druid"/>

        <vocation name="Master Sorcerer"/>

        <vocation name="Elder Druid"/>

    </instant>

And SD :)

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

        <vocation name="Druid"/>

        <vocation name="Elder Druid" showInDescription="0"/>

        <vocation name="Sorcerer"/>

        <vocation name="Master Sorcerer" showInDescription="0"/>

        <vocation name="Paladin"/>

        <vocation name="Royal Paladin" showInDescription="0"/>
 
.... are you kidding me?
When you change exhauset... Players will shoot 2x faster sd and heal...
i want to be possible cast spell in same time =s
 
Back
Top