09-20-2021, 08:07 PM
Anti Paralyze if no monsters
Note that you can use Healer to do that, it's better to do this there because it will consider other heal rules.
Note that you can use Healer to do that, it's better to do this there because it will consider other heal rules.
local CONFIG = {
Spell = 'exura', -- Spell to cast.
Mana = 25, -- Mana to cast spell.
SafeHealth = 80, -- Only cast spell if your hp% is equal or higher this value.
}
if connected() and cancast() and paralyzed() and hppc() >= CONFIG.SafeHealth and mp() >= CONFIG.Mana and maround() == 0 then
cast(CONFIG.Spell)
wait(300, 600)
end