Lineage 2 Tower Forum

Full Version: Trouble with pet healing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys, help me please! Healer does not want to target my wolf for healing, eventually he dies (( If i manually target my wolf - healer start to heal, just does not target a pet himself. Similarly, my wc, do not throw chant of life at the specified % HP. I googled forum almost all night long, so many similar, no solution.
Wolf is very powerful helper, but he dies w/o heal ((( plz help me. Maybe some kind of script, huh?
Sorry for my bad eng, haven't practice a long time.
up! still actual!
Here is a pet heal script but it eventually gives an unknown C++ exception. It currently uses the servitor heal skill so you will have to change the skill id to what you want.

Code:
ShowToClient("SYS","Heal Pet");
HpWhenHeal = 65;   -- MP%

repeat
local petlistaround = GetPetList();
for Apet in petlistaround.list do
    if(Apet:GetHpPercent() < HpWhenHeal) then
    Sleep(1000);
    UseSkillRaw(1127,false,false); --servitor heal
    Sleep(1000);
    end;
    Sleep(500);
end;
-----------------------------------------------
until false;
I have an updated and working pet healing script so if anyone wants it then private message me and i'll send it to you.

That includes summoner and pet scripts
Reference URL's