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

Crusader Shield Bash / Slash Not attacking

Pochizzle

Member
Joined
Mar 5, 2012
Messages
204
Reaction score
0
The other day my build was working just fine, and IDK if a recent D3 update or something broke the skill codes but it won't use them at all.

Tried reinstalling DB onto my computer to see if it was on my part, and didn't seem to be able to get it to work either.

Acts like its kiting but will never fully use the attacks.

Let me know if you need any other info
 

Attachments

Check your equipped gear.... If you're running LoN or Invokers and are missing an item, it'll revert to a basic system.
Poke your head into \Plugins\Trinity\Combat\Abilities\CrusaderCombat.cs
Code:
        public static bool IsBombardmentBuild
        {
            get
            {
                return Skills.Crusader.Bombardment.IsActive && Legendary.BeltOfTheTrove.IsEquipped &&
                       !Skills.Crusader.Punish.IsActive &&
                       // Including LoN Bombardment build that uses Mortal Drama,
                       (Legendary.TheMortalDrama.IsEquipped ||
                        // Pony builds that use Norvald's Fervor
                        Sets.NorvaldsFavor.IsFullyEquipped ||
                        // Phalanx LoN build that uses Phalanx boosting items
                        Legendary.WarhelmOfKassar.IsEquipped && Legendary.UnrelentingPhalanx.IsEquipped &&
                        Legendary.EternalUnion.IsEquipped ||
                       // or just some generic variation that uses Ingeom
                       Legendary.Ingeom.IsEquipped ||
                       Legendary.BloodBrother.IsEquipped);
            }
        }

Code:
        public static bool IsInvokerPunishBuild
        {
            get { return Sets.ThornsoftheInvoker.IsFullyEquipped && Skills.Crusader.Punish.IsActive; }
        }

Only Two fully supported builds at the moment.
 
You're not using Punish which means you're running an unsupported variation of the build, so that's why it doesn't work properly. Is this a new variation that's making the rounds now? Or did you come up with it by yourself?
 
You're not using Punish which means you're running an unsupported variation of the build, so that's why it doesn't work properly. Is this a new variation that's making the rounds now? Or did you come up with it by yourself?

It didn't even use shield bash, and slash happened to be part of the set and I liked the attack better.
It was literally working fine a couple days ago

So this bot is limited to only certain builds attacks?
If so link please?
 
already fixed,you will get the fix in next Trinity build
 
Back
Top