Code:
elseif bossid == 71454 then --Malkorok
local buff = { 142913 }
--RaidRangeDispel(dispelid,buff,8) --dispel here
if UnitDebuffID("player",142861) then --Ancient Miasma
ShieldSheuronEngine(Nova_Mouseover, Nova_LowHP, Nova_ActualHP, Nova_TargetHeal, Nova_PetHeal) -- Deactivate Mouseover || At what % Health do we consider someone LowHP || Sort by Actual Health = true
end
This line " local buff = { 142913 } " is the debuff
This line "--RaidRangeDispel(dispelid,buff,
--dispel here " tells the bot to dispell.
If i only remove the line with teh dispell, would the preceding line afect how the code will run?
Should it look like this -
Code:
elseif bossid == 71454 then --Malkorok
local buff = { 142913 }
if UnitDebuffID("player",142861) then --Ancient Miasma
ShieldSheuronEngine(Nova_Mouseover, Nova_LowHP, Nova_ActualHP, Nova_TargetHeal, Nova_PetHeal) -- Deactivate Mouseover || At what % Health do we consider someone LowHP || Sort by Actual Health = true
end or like this?
Code:
elseif bossid == 71454 then --Malkorok
if UnitDebuffID("player",142861) then --Ancient Miasma
ShieldSheuronEngine(Nova_Mouseover, Nova_LowHP, Nova_ActualHP, Nova_TargetHeal, Nova_PetHeal) -- Deactivate Mouseover || At what % Health do we consider someone LowHP || Sort by Actual Health = true
end