Anyone tried to raid with this (Ret Paladin), what DPS did you generate?
//heal player if we're going down in less than 5 seconds, and we are under 50% health
//note that this behavior will be skipped if you don't have the talent (like CastSpell does)
Healer.HealMe("Desperate Prayer", a => Health.TimeToDie(Me) < 5 && Me.HealthPercent < 50, "Desperate Prayer")
//does the player build supports smite healing?
private bool HasAtonement { get { return SC.HasTalent("Atonement"); } }
//party AOE heals
//FindParty means: find a new target to cast a heal on, and run children (CastSpell) if such a target was found
//it automatically look for a target for each raid party, given the restrictions (distance between players, min. targets to be hit, etc.)
Healer.FindParty(a => true,
10, //players must be at least at X % of their life (average)
80, //players must have less than X % of life (average)
30f, //max distance between party members to trigger the spell
4, //min number of players to hit
SC.CastSpell("Prayer of Healing", a => true, "Prayer of healing")
)
//should I cast a flash or greater heal on target?
SC.CastSpell("Flash Heal", a => Health.TimeToDie(SC.SpellTarget) < 3, "Flash heal (emergency)")
SC.CastSpell("Greater Heal", a => true, "Greater Heal")
//and much more toys to play with...
This code must be in Buffs
Code:public override Composite Buffs { get { return new PrioritySelector( SC.CastBuff("Horn of Winter", ret => (!Me.HasAura("Horn of Winter") || (Me.CurrentRunicPower < 30 && Me.Combat)) && !Me.Mounted && !Me.Dead, "Buffing Horn of Winter!") ); } }
Cast Spell X if condition... <- top priority action
Cast Spell Y <- lowest priority action
Cast Spell X if Foo() == 12
[some other actions here...]
Cast Spell Y if Foo() != 12
Am i correct when i say you haven't done Fan of Knives yet? or is this not possible?
Been looking at code and i dont understand all the numbers in SC.CastAreaSpell("Fan of Knives", 8, false, 8, 0.0, 0.0, ret => !SC.PlayerHasBuff("Blade Flurry"), "Fan of Knives"),
That will do FoK on 8 targets within 8 yards (Assuming the player does not have Blade Flurry active)
FoK as combat is just shitty in nearly all situations, as far as testing damage points where it is good to swap to FoK, I couldn't find a suitable encounter to test over extended duration. The amount of mobs are just rough guesses, but should be reasonably close to the mark.
Im having problems with frost dk aoe. Sometimes it uses howling blast all the time on singeltarget with no other mobs in sight.
Frost DK's are suppose to use Howling blast on single target.
He didn't say anything about it being spam-cast in his post. His post made it sound like it was being used on single-targets when he thought it was only for AoE and I assume he was talking about rime procs.Yes but what the poster you quoted was saying is it is spamming it which is not what a dk does single target. A dk single target should only use hb to put frost debuff up and to maintain it. That is it unless you get rime procs. Reasoning you use the same frost/death runes for obliterate.
Sent from my SAMSUNG-SGH-I997 using Tapatalk