Lineage 2 Tower Forum

Full Version: how to heal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I set up to heal summon and my self?

please and thank you.

I know how to do 1 or the other in hp,cp,mp recovery.

Do I put both heals for me and summon in the same one?

If so tell me how because I keep dieing, cant heal me and summon.
I have the same question
use a script.................................
Check every 2 second if my hp or pet hp is <= 70% then use heal skill............


repeat
if GetMe():GetHpPercent() <= 70 then
TargetMe()
UseSkillRaw(iddddddddddddddddd)
Sleep(1000)
ClearTargets()
elseif GetPet() ~=nil and GetPet():IsMyPet() and GetPet():GetHpPercent() <= 70 then
TargetPet()
UseSkillRaw(iddddddddddddddddd)
Sleep(1000)
ClearTargets()
end
Sleep(2000)
until false
what class are you? i have scripts that summon and heal your summon
Reference URL's