Soldiersbane
New Member
- Joined
- Mar 4, 2013
- Messages
- 116
- Reaction score
- 1
Trying to do a Berserker build, but the bot won't stay at max fury because it keeps spaming Battle Rage. Is there an easy way to turn it off?
I just delete everything related to furydump under CanCastBattleRage in Plugins\Trinity\Combat\Abilities\BarbarianCombat , and it works just as expected.
im still having battle rage problem and cant seem to solve it. any1 care to explain exact line to delete in trinity to stop it from spamming all the time. tnx
imagine im potato and u must explain it to me.
public static bool CanCastBattleRage
{
get
{
return !UseOOCBuff && !Player.IsIncapacitated && CanCast(SNOPower.Barbarian_BattleRage, CanCastFlags.NoTimer) &&
(
!GetHasBuff(SNOPower.Barbarian_BattleRage) ||
(Settings.Combat.Barbarian.FuryDumpWOTB && Player.PrimaryResourcePct >= V.F("Barbarian.WOTB.FuryDumpMin") && GetHasBuff(SNOPower.Barbarian_WrathOfTheBerserker)) ||
Settings.Combat.Barbarian.FuryDumpAlways && Player.PrimaryResourcePct >= V.F("Barbarian.WOTB.FuryDumpMin")
) &&
Player.PrimaryResource >= V.F("Barbarian.BattleRage.MinFury");
}
}
public static bool CanCastBattleRage
{
get
{
return !UseOOCBuff && !Player.IsIncapacitated && CanCast(SNOPower.Barbarian_BattleRage, CanCastFlags.NoTimer) && !GetHasBuff(SNOPower.Barbarian_BattleRage);
}
}
Probably "fury dump" is checked in the trinity - barbarian settings.






