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)



Quote Originally Posted by 7846678 View Post
Can someone send me an exura sio script? to download, im not the smartest person at this bot.