Lineage 2 Tower Forum

Full Version: Healing Pet? (Healer not healing the Pet)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone have any suggestions or scripts/plugins so that the Healer can heal the pet? I've added the pet to the list of individuals getting the heals but the dedicated healer will never heal the pet.. Heals all the party members correctly, but never the pet..

Now I have the warlock healing his own pet (this works fine but the heals are weak) but cannot figure out why the healer isn't doing it..

Suggestions/Tips would be much appreciated.
I've always had this issue as well. I have a script that uses servitor heal on pets but it eventually gives an unknown C++ exception but if you want to take a look and modify it then here ya go.

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;
[/quote]

I've always had this issue as well. I have a script that uses servitor heal on pets but it eventually gives an unknown C++ exception but if you want to take a look and modify it then here ya go.

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;
Reference URL's