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

Barbarian Ignore Pain

Eventine

New Member
Joined
Apr 30, 2014
Messages
133
Reaction score
0
Basically I use this mainly for the move speed buff from the bravado rune and would like to spam it whenever it's off cooldown, in or out of combat. What do I edit in BarbarianCombat.cs to make this happen?

public static bool CanCastIgnorePain
{
get
{
return
!UseOOCBuff &&
CanCast(SNOPower.Barbarian_IgnorePain) &&
(Player.CurrentHealthPct <= V.F("Barbarian.IgnorePain.MinHealth") ||
(Sets.TheLegacyOfRaekor.IsFullyEquipped && (Player.CurrentHealthPct <= V.F("Barbarian.FuryDumpRaekor.MinHealth")
|| CurrentTarget.IsBossOrEliteRareUnique ||
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")));
}
}

this is currently the code for ignore pain

Thank you.
 
Code:
        public static bool CanCastIgnorePain
        {
            get
            {
                return
                    
                    CanCast(SNOPower.Barbarian_IgnorePain);
            }
        }
 
Should have honestly searched for this, thank you MrPewter for bumping this thread, and thank you MrBubbel for posting the fix, running two barbarians, who rely on Ignore pain is perfect to constantly spam it.
 
Back
Top