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

[REQUEST] Singular Protection Modification

eXact7890

Member
Joined
Mar 18, 2012
Messages
37
Reaction score
0
While using protection to level or quest or grind, it never uses Avatar.

How could I do this modification?
 
Code:
                            new Decorator(
                                ret => Me.GotTarget && (Me.CurrentTarget.IsBoss || Me.CurrentTarget.IsPlayer || (!Me.IsInGroup() && AoeCount >= 3)),
                                new PrioritySelector(
                                    Spell.Cast("Recklessness"),
                                    Spell.Cast("Skull Banner"),
                                    // Spell.Cast("Demoralizing Banner", ret => !Me.CurrentTarget.IsBoss && UseAOE),
                                    Spell.Cast("Avatar")
                                    )

That's the section that's determining to cast Avatar. So it's checking you have a target and the target is either a boss, another player, or you're soloing and have 3+ mobs.

If you can advise what conditions you'd like it to cast Avatar under, then I (or someone) can tell you what to change, but it's probably just as easy to hit it manually.
 
Back
Top