I love it!
I'm probably going to modify the evaluation here (quoting lines 168-169):
It's checking for Blood Plague twice, not Blood Plague and Frost Fever ("both diseases").
I just changed the evaluation to only checking for Frost Fever, since right now he's not even casting Obliterate (only a lot of Death Coil and Howling Blast). I'll see how that goes.
Here's the earlier log: View attachment ezfrost_nobliterate.txt
I'm probably going to modify the evaluation here (quoting lines 168-169):
Code:
else if (isAuraActive("Killing Machine") && CanCast("Howling Blast") || CanCast("Frost Strike"))
{
//If the target has both disaeses then obl, otherwise frost strike
if (Target.ActiveAuras.ContainsKey("Blood Plague") && Target.ActiveAuras.ContainsKey("Blood Plague"))
{
Cast("Obliterate");
}
else
{
Cast("Frost Strike");
}
}
It's checking for Blood Plague twice, not Blood Plague and Frost Fever ("both diseases").
I just changed the evaluation to only checking for Frost Fever, since right now he's not even casting Obliterate (only a lot of Death Coil and Howling Blast). I'll see how that goes.
Here's the earlier log: View attachment ezfrost_nobliterate.txt
Last edited: