Hey, I move a couple of lines in Ret Palys methods for PVPcombat that make my paly unstoppable. Maybe it can be added to the standard version.
[...] standard
.
.
standard^> Helpers.Common.CreateInterruptSpellCast(ret => StyxWoW.Me.CurrentTarget),
// I moved this two line from the bottom to the top. I want this to be done as soon as available and nothing else before.
moved up> Spell.Cast("Hammer of Wrath", ret => StyxWoW.Me.CurrentTarget.HealthPercent <= 20 || StyxWoW.Me.ActiveAuras.ContainsKey("Avenging Wrath")),
moved up> Spell.Cast("Exorcism", ret => StyxWoW.Me.ActiveAuras.ContainsKey("The Art of War")),
// Defensive
standard> Spell.BuffSelf("Hand of Freedom",
ret => !StyxWoW.Me.Auras.Values.Any(a => a.Name.Contains("Hand of") && a.CreatorGuid == StyxWoW.Me.Guid) &&
StyxWoW.Me.HasAuraWithMechanic(WoWSpellMechanic.Dazed,
WoWSpellMechanic.Disoriented,
WoWSpellMechanic.Frozen,
WoWSpellMechanic.Incapacitated,
WoWSpellMechanic.Rooted,
WoWSpellMechanic.Slowed,
WoWSpellMechanic.Snared)),
// I added this to remove movement impairing effects when HoF is on CD. It need at least 1 point in Acts of Sacrifice to work. Glyph of Cleanse is recommended
// for mana costs. This is what makes him unstoppable.

added> Spell.BuffSelf("Cleanse",
ret => StyxWoW.Me.HasAuraWithMechanic(WoWSpellMechanic.Dazed,
WoWSpellMechanic.Disoriented,
WoWSpellMechanic.Frozen,
WoWSpellMechanic.Incapacitated,
WoWSpellMechanic.Rooted,
WoWSpellMechanic.Slowed,
WoWSpellMechanic.Snared)),
// This is only for humans. I copied it from the Generic.cs; for some reason everything is disabled there. BTW can you add Seduced and Blinded to the
// mechanics in the PVP.IsCrowdControlled(x) method ?
copied> new Decorator(
ret => SpellManager.CanCast("Every Man for Himself") && PVP.IsCrowdControlled(StyxWoW.Me),
Spell.Cast("Every Man for Himself")),
// I added Lay on Hands. 5 mins CD on Divine Shield is a lot of time we can use an extra life from LoH in the mean time.

added> Spell.BuffSelf("Lay on Hands", ret => StyxWoW.Me.HealthPercent <= 15 && !StyxWoW.Me.HasAura("Forbearance")),
standard> Spell.BuffSelf("Divine Shield", ret => StyxWoW.Me.HealthPercent <= 20 && !StyxWoW.Me.HasAura("Forbearance") && (!StyxWoW.Me.HasAura("Horde Flag") ||
!StyxWoW.Me.HasAura("Alliance Flag"))),
.
.
[...] standard
It could probably be organized better or optimized, but for now works like a charm.