09-17-2021, 04:30 PM
Heal Summon with UH
keywords: heal summon, uh summon, ultimate healing rune summon
local Summon = 'demon skeleton' -- Summon name
local Health_Heal = 30 -- Summons health % that it should use rune to heal.
local Rune_Heal = 'Intense Healing Rune' -- Rune name or id that should be used to heal monk.
local Creatures = getcreatures('mfs')
for _, creature in ipairs(Creatures) do
if creature.name:lower() == Summon:lower() and creature.hppc <= Health_Heal then
useitemoncreature(Rune_Heal, creature.id)
wait(800, 1000)
break
end
end
keywords: heal summon, uh summon, ultimate healing rune summon