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

War Cry spamming

z26

New Member
Joined
Sep 6, 2016
Messages
18
Reaction score
0
I disabled Fury Dump, put the War Cry delay slider to its maximum and it still spams it. I also tried putting the legendary belt (with movement speed from war cry cast) in my chest.

I need War Cry to be cast whenever the buff is gone, not any earlier. Anyone has a clue?
 
What build and gear are you using? What key do you have it set on?

The only thing that I see in the barbariancombat.cs for warcry is really:
Code:
        public static bool CanUseWarCry
        {
            get
            {
                return
                    CanCast(SNOPower.X1_Barbarian_WarCry_v2, CanCastFlags.NoTimer) && !Player.IsIncapacitated &&
                    (Player.PrimaryResource <= 40 ||
                     Skills.Barbarian.WarCry.TimeSinceUse >= Settings.Combat.Barbarian.WarCryWaitDelay) &&
                    (!Legendary.BladeOfTheTribes.IsEquipped || TargetUtil.AnyMobsInRange(20f));

But that is basically setup for anyone using Blade of the Tribes because that weapon makes War Cry and Threatening Shout cast avalanche. Even so, it still is checking the settings for the set delay.
 
Generally it spams war cry because it generates fury. I could see wanting to not use if you need the resource it generates for a specific purpose, or the movement buff with the belt you mentioned, or if its not going to be available again by the time the buff expires. What exactly is your logic here and maybe we can help.
 
I am running an Obsidian Ring of the Zodiac so I don't want to have War Cry on cooldown all of the time. I want the cooldown to tick off of Wrath of the Berserker.

Even when I am not running a Chalik's Chain (movement speed War Cry belt) it spams War Cry no matter how far I push the slider for the War Cry delay.

In short, the slider is broken. Maybe I have a setting that counters the slider, but it's not Fury Dump because I have those disabled.
 
Back
Top