Hi Hazard
How does the lifebloom logic work in 10 and 25 man, i.e how do i alternate which tank the bloom rolls on?
Thanks
[20:17:49:215] Exception in TraceLine:Process must have frozen or gotten out of sync; InjectionFinishedEvent was never fired. - at BlueMagic.ExecutorRand.Execute()
at Styx.WoWInternals.World.GameWorld.TraceLine(WoWPoint from, WoWPoint to, Single distance, CGWorldFrameHitFlags flags, WoWPoint& hitPoint) - Honorbuddy
[20:17:49:244] System.NullReferenceException: Object reference not set to an instance of an object.
fresh install of hb,lazyraider and your cc
does work, but still not Lifebloom
Hmm, would have thought stacking lifebloom on whichever tank has the most aggro would be more effective. Is this a viable tactic and how could it be implemented?
private int GetAggroDifferenceFor(WoWUnit unit, IEnumerable<WoWPlayer> partyMembers)
{
uint myThreat = unit.ThreatInfo.ThreatValue;
uint highestParty = (from p in partyMembers
let tVal = unit.GetThreatInfoFor(p).ThreatValue
orderby tVal descending
select tVal).FirstOrDefault();
int result = (int)myThreat - (int)highestParty;
return result;
}