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

Trinity - Crusader not using Heaven's Fury.

durty

New Member
Joined
Nov 13, 2011
Messages
17
Reaction score
0
Hello,

After some failed attempts to try and modify the code in ''CrusaderCombat.cs'', by means of this guide;
https://www.thebuddyforum.com/demon...ll-activation-criteria-range-etc-dummies.html I have come here to seek help from people who actually know something about coding.

I have the following issue:
My crusader suddenly stopped using Heaven's Fury (Split fire) after I acquired the Akkhan 6 set on my crusader I think. I am not entirely sure though. I do know that with only 2 set of Akkhan it used Heaven's Fury just fine on cooldown under the circumstances I told trinity to.

In my attempts to try and modify the code in the combat file I spotted some code containing ''holyshotgun'' and some code containing ''FiresofHeaven''. I assumed this could be part of the issue as trinity probably thinks it should only use Heaven's fury under the circumstance where this build is set up on the crusader. I don't have a ''holy shotgun'' build.

I tried completely removing the sections of code that contained anything with ''holyshotgun'' or ''FiresofHeaven'', but trinity still wouldn't use Heaven's Fury on cooldown on 1 or more targets as I told it to in the settings. (Elites have nothing to do with it, it won't use Heaven's Fury on Elites or Rift Guardians either).

Hope somebody is able to help me out.

Much appreciation for all the hard work from all the developers, profile writers and other people who contribute anything in any way to this community!

Regards,

Durty
 
Fixed
Code:
                // HeavensFury
                bool hasAkkhan = (Sets.ArmorOfAkkhan.IsThirdBonusActive);
                if (CanCastHeavensFury() && [COLOR="#FF0000"]!hasAkkhan[/COLOR])
to
Code:
                // HeavensFury
                bool hasAkkhan = (Sets.ArmorOfAkkhan.IsThirdBonusActive);
                if (CanCastHeavensFury() && [COLOR="#FF0000"]hasAkkhan[/COLOR])
fixed
 
Back
Top