zakne11
New Member
- Joined
- Jan 11, 2013
- Messages
- 285
- Reaction score
- 0
This is one of the most annoying problems with trinity and ww builds: try to kill the last mob with basic attacks.
To fix it, change:
Code:(TargetUtil.AnyMobsInRange(50, 2) || CurrentTarget.HitPointsPct >= 0.30 || CurrentTarget.IsBossOrEliteRareUnique || Player.CurrentHealthPct <= 0.60) &&
to:
Code:(TargetUtil.AnyMobsInRange(50, 2) || CurrentTarget.HitPointsPct >= 0.10 || (CurrentTarget.HitPointsPct < 0.10 && Player.PrimaryResource >= 30) || CurrentTarget.IsBossOrEliteRareUnique || Player.CurrentHealthPct <= 0.60) &&
@ Trinity/Combat/Abilites/BarbarianCombat.cs
its all clear here