Millz
Well-Known Member
- Joined
- Jan 15, 2010
- Messages
- 6,496
- Reaction score
- 223
Ok, i worked on same shaman pvp stuff, but i'm having issues.
I am using my focus to control the cc, weather to react offensive or defensive.
if i have friendly focus, everythign works like desired
if i have a hostile focus, it executes the rotation one time, then idle's ... same for no focus.
no errors in logs at all.
here's the full enhancement.cs based on current revision but modified for pvp: https://pastee.org/67jae
or, here is only the pvp-part: https://pastee.org/wnt52
i am in need of help.
Haven't looked through in detail, but try something like this.
Code:
private static Composite PvPBehaviour
{
get
{
return new PrioritySelector(
new Decorator(ret => Me.FocusedUnit != null && Me.FocusedUnit.IsFriendly && Me.CurrentTarget != null, PvPBehaviourDefensive()),
PvPBehaviourOffensive()
);
}
}
Last edited: