Yes I can look at that. Unfortunately, my raid team only made it past ultraxion and then disbanded b/c people left. I will have to see if this buff is in LFR to test.
Nope isnt in LFR @spine.
Already tested it with RaidBot?
If not, ill do it tonight.![]()
whats RaidBot?
private WoWPlayer GetSearingPlasmaTarget()
{
return (from unit in ObjectManager.GetObjectsOfType<WoWPlayer>(true, true)
orderby unit.HealthPercent ascending
where (unit.IsInMyPartyOrRaid || unit.IsMe)
where !PlayerBlacklisted(unit.Name)
where !unit.Dead
where !unit.IsGhost
where unit.IsFriendly
where unit.HasAura("Searing Plasma")
where unit.Distance < 40
where unit.InLineOfSight
where unit.HealthPercent < 95
select unit).FirstOrDefault();
}
if (!tar.HasAura("Searing Plasma") && GetSearingPlasmaTarget()!=null)
{
WoWPlayer plasmaTar = GetSearingPlasmaTarget();
tar = plasmaTar;
Logging.Write("Searing Plasma Healing");
}
Is there a way I can set it to not use fear ward on cd? It's not a big deal if not. Just don't see a reason to cast it when fighting things that don't cast fear.