Hi,
Trying to get Multi-Shot to work for hunters and Hurricane for Moonkin's and I just can't figure it out. Look at what others have done but I can't get them to work or compile
I am using singular.
Tried adapting this also.
Trying to get Multi-Shot to work for hunters and Hurricane for Moonkin's and I just can't figure it out. Look at what others have done but I can't get them to work or compile

Tried adapting this also.
Code:
// AoE
new Decorator(ret => Unit.NearbyUnfriendlyUnits.Count(u => u.Distance < 15) >= 5,
new PrioritySelector(
Spell.BuffSelf("Demon Soul"),
Spell.BuffSelf("Soulburn", ret => !StyxWoW.Me.CurrentTarget.HasAura("Seed of Corruption") && StyxWoW.Me.CurrentSoulShards > 0 && TalentManager.GetCount(1, 15) == 1),
Spell.Buff("Seed of Corruption", ret => !StyxWoW.Me.CurrentTarget.HasAura("Seed of Corruption"))
)),