FluffyPulsar
New Member
- Joined
- Jun 27, 2013
- Messages
- 59
- Reaction score
- 0
I've found that the bot doesn't seem to use WOTB on cooldown - just fought to elites at one time with full fury and WOTB off cooldown. Anyone know what conditions triggers WOTB? I've disabled use WOTB on Goblins as well WOTB vs. hard elites, so I'd expect the barb to use WOTB whenever its off cooldown AND has enough fury?
The conditions are complicated:!UseOOCBuff &&
Player.PrimaryResource >= V.I("Barbarian.WOTB.MinFury") &&
// Don't still have the buff
!GetHasBuff(SNOPower.Barbarian_WrathOfTheBerserker) &&
CanCast(SNOPower.Barbarian_WrathOfTheBerserker) &&
// Only with Battle Rage
(Hotbar.Contains(SNOPower.Barbarian_BattleRage) && GetHasBuff(SNOPower.Barbarian_BattleRage) || !Hotbar.Contains(SNOPower.Barbarian_BattleRage)) &&
// Not on heart of sin after Cydaea
CurrentTarget.ActorSNO != 193077 &&
(WOTBGoblins || WOTBIgnoreElites || WOTBElitesPresent ||
//Or if our health is low
Player.CurrentHealthPct <= Settings.Combat.Barbarian.PotionLevel);
- Only in combat.
- If he has enough fury.
- If the buff is not up.
- If the the timer has elapsed.
- If Battle Rage is up.
- If not on heart of sin after Cydaea.
- If there is a goblin, or ignoring elites, or if there are elites, or if the health is low.