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

Request Feature. Barb Warcry

Vodica

New Member
Joined
May 19, 2014
Messages
3
Reaction score
0
For optimization of the popular chest running profiles for a barb would it be possible to have a toggle to spam warcry even when the effect is still active as some gear allows for greater movement for a period after its activation.
 
For optimization of the popular chest running profiles for a barb would it be possible to have a toggle to spam warcry even when the effect is still active as some gear allows for greater movement for a period after its activation.

Open Plugins\Trinity\Combat\Abilities\BarbarianCombat.cs

Find this code

Code:
public static bool CanUseWarCry
        {
            get
            {
                return
                    CanCast(SNOPower.X1_Barbarian_WarCry_v2 , CanCastFlags.NoTimer) &&
                                      !Player.IsIncapacitated &&
				      (Player.PrimaryResource <= V.F("Barbarian.WarCry.MaxFury") || !GetHasBuff(SNOPower.X1_Barbarian_WarCry_v2));
            }
        }

Change it to

Code:
public static bool CanUseWarCry
        {
            get
            {
                return CanCast(SNOPower.X1_Barbarian_WarCry_v2) && !Player.IsIncapacitated;
            }
        }
 
No need to mess with the .cs file for this.

Open DB
Plugins > Trinity > Config > Variables > Barbarian.WarCry.MaxFury
Change it to any number higher than your maximum fury.
 
Back
Top