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

problems/idea with Crusader Trinity /w Rolands sweep attack / shield bash

h0bby

New Member
Joined
Jul 22, 2014
Messages
8
Reaction score
0
In the new season my best option for crusader, so far, is to run full Rolands set. I have punish as extra wrath regen but main attacks are sweep attack and shield bash but they don't seem to work together very well. Right now the bot rarely uses sweep attack and tries to use shield bash all the time. I would prefer to use sweep attack vs any mobs larger then 3-4 and use shield bash on elites/boss. Instead im going into a mob on 20+ and trying to shield bash them 1 by 1. Any suggestions or help out there?
 
modify CrusaderCombat.cs, add a new class private static bool CanCastShieldBash()
then add CurrentTarget.IsEliteRareUnique and TargetUtil.AnyMobsInRange(65f, 1) in it, just like CanCastFallingSword()
i don't know if this will work(cuz i don't have Rolands yet XD), you can have a try
 
Ive been tyring out what you said without any success. Dont think im coding it right. Could you do a copy/paste of the code to place in?


private static bool CanCastShieldBash()
{
return CanCast(SNOPower.X1_Crusader_ShieldBash) && (CurrentTarget.IsEliteRareUnique || TargetUtil.AnyMobsInRange(65f, 1);
}

This is what I put in without any success
 
Back
Top