lua code:
local friends = { -- add targets u want to heal and at what percent
['FRIEND'] = percent,
['Sheradial'] = 70
}
Module.New('HEAL', function(mod)
for name, percent in pairs(friends) do
local c = Creature.New(name)
if c:isOnScreen() then
if c:HealthPercent() <= percent then
Self.Say('exura sio "' .. name)
break
end
end
end
mod:Delay(500)
end)