What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Ensemble Ret Rotation

Gunmetal

New Member
Joined
Nov 10, 2010
Messages
151
Reaction score
2
Ensemble Ret spec all it does is spam Exorcism until mana is out...Raphus hasn't checked back in a while on it (i'm sure he's way busy with other stuff)...anyway, I'm looking at the code and I can't see anything wrong with the rotation...anyone have any ideas?

PHP:
#region Dps

        private Composite PaladinRetributionDpsRotation
        {
            get
            {
                return
                    new PrioritySelector(
							CreateBuffCheckAndCast("Inquisition",
								ret => Me.CurrentHolyPower == 3),
							CreateSpellCheckAndCast("Hammer of Wrath"),
							CreateSpellCheckAndCast("Exorcism",
								ret => Me.HasAura("The Art of War")),
							CreateSpellCheckAndCast("Templar's Verdict",
								ret => Me.CurrentHolyPower == 3),
							CreateSpellCheckAndCast("Crusader Strike",
								ret => Adds.Count(a => a.Distance < 8) < 2 || !HasTalent(3,17,2)),
							CreateSpellCheckAndCast("Divine Storm",
								ret => Adds.Count(a => a.Distance < 8) >= 2 && HasTalent(3,17,2)), 
							CreateSpellCheckAndCast("Templar's Verdict",
								ret => Me.HasAura("Hand of Light")),
							CreateSpellCheckAndCast("Judgement"),
							CreateSpellCheckAndCast("Holy Wrath"),
							CreateSpellCheckAndCast("Consecration")
						);
            }
        }

        #endregion
 
Back
Top