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

How to get a barb to stop spaming Battle Rage?

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.
 
I just delete everything related to furydump under CanCastBattleRage in Plugins\Trinity\Combat\Abilities\BarbarianCombat , and it works just as expected.

Holy crap thank you! This helped a lot!
 
Probably "fury dump" is checked in the trinity - barbarian settings.
 
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.
 
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.


Trinity/Combat/Abilities/Barb.....

Code:
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");
            }
        }

becomes

Code:
public static bool CanCastBattleRage
        {
            get
            {
                return !UseOOCBuff && !Player.IsIncapacitated && CanCast(SNOPower.Barbarian_BattleRage, CanCastFlags.NoTimer) && !GetHasBuff(SNOPower.Barbarian_BattleRage);                    
            }
        }
 
Back
Top