Hello Dears.
I Play a otserver (Radbr) and then have some exclusives heal spells
Cura-ja (Like a exura vita)
Vida-ja "My Name" (Like a sio, but better)

I use that action, to heal me, but, i cant put the (Vida-ja"My name").
Have one solution ?

-- Auto healer V1.0

init start
local exura_spell = "Exura" -- you can change the spell if u want
local exuragran_spell = "Exura Gran" -- you can change the spell if u want
local exuravita_spell = "Exura Vita" -- you can change the spell if u want
local maxHPPC = 85 -- Max amount of % of health for say exura
local minHPPC = 75 -- Min amount of % of health for say exura
local max2HPPC = 74 -- Max amount of % of health for say exura gran
local min2HPPC = 50 -- Min amount of % of health for say exura gran
local min3HPPC = 49 -- Min amount of % of health for say exura vita
init end

-- Don't change nothing after that line

auto(100)--Important checker!

-- Exura Caster
if ($hppc >= minHPPC) and ($hppc <= maxHPPC) then
auto(100)
cast(exura_spell)
wait(300,500)
end

-- exura gran caster
if ($hppc >= min2HPPC) and ($hppc <= max2HPPC) then
auto(100)
cast(exuragran_spell)
wait(300,500)
end

-- exura vita caster
if ($hppc <= min3HPPC) then
auto(100)
cast(exuravita_spell)
wait(300,500)
end