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

[Crusader] Phalanx Spam Build

kixanai

New Member
Joined
Apr 15, 2014
Messages
11
Reaction score
0
Hello guys,

So I bot for long time and only yesterday I decided to test things in trinity and starting to understood a bit more of this, although I couldnt find a answer to this, being me dumb as fuck, can anyone make me a crusader combat log to use (spam) Phalanx? Atm im using Unreleting Phalanx shield with stampede but for some reason my bot only use it in Elites, and I want it to use in everymob as if it was like shotgun build.

Sorry for my bad english and hope for help C:
 
In crusader combat file find these lines:
Code:
        private static bool CanCastPhalanx()
        {
            return CanCast(SNOPower.x1_Crusader_Phalanx3) && (TargetUtil.ClusterExists(15f, 3) || TargetUtil.EliteOrTrashInRange(15f));
        }
And replace with these:
Code:
        private static bool CanCastPhalanx()
        {
            return CanCast(SNOPower.x1_Crusader_Phalanx3);
        }
Worked for me ;)
 
Back
Top