Lineage 2 Tower Forum

Full Version: debufs - aeore heler
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Is there a way to make a script or plugin to auto remove debuffs of my party menbers?.. ty
Tryed search?
i have buf not found
fox its not my debuffs but party debuffs...
i have tryed but i will be glad if one good soul help me Tongue i saw these scripts already but i have fail hard when i tryed to mix both.
Post the fail then maybe

It's easyer to repair thab start from zero
    LUA Programming
PartyM1 = "xxx"	--here write name,inside the " ",  of your Main to be heal
PartyM2 = "xxx"
PartyM3 = "xxx"
PartyM4 = "xxx"
PartyM5 = "xxxx"
PartyM6 = "xxx"
 
Debuff = 60;
'HPWhenHeal = 60;
Dispell = 11762; -- Balance Heal
----------------------------------------------------------------
WhoToHeal = nil;
HealSkill = GetSkills():FindById(HealSkillId);
repeat
----------
if(
    (GetUserByName(PartyM1):getbuff(Debuff) < Dispell) and 
	(GetUserByName(PartyM2):getbuff(Debuff) < Dispell) and
	(GetUserByName(PartyM3):getbuff(Debuff) < Dispell) and
	(GetUserByName(PartyM4):getbuff(Debuff) < Dispell) and
	(GetUserByName(PartyM5):getbuff(Debuff) < Dispell) and
	(GetUserByName(PartyM6):getbuff(Debuff) < Dispell)
	) and
 
	(Dispell ~= nil) and 
	(Dispell:CanBeUsed())and
    (GetTarget() ~= nil) and 
	(GetTarget():IsMyPartyMember() == false)then
ClearTargets();
Sleep(200);
UseSkill(Dispell);
Sleep(400);
ClearTargets();
end;
until false;



this is the best i could do but i must be missinng many commands
O.o
Mather of god... o.o
Pages: 1 2
Reference URL's