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

Crusader- 6 set Ahkkan and spamming Heavens Fury

gopensgo

New Member
Joined
Mar 21, 2010
Messages
109
Reaction score
0
Im sure im not the only one with this issue. My crusader has a 6 set Ahkkan and im using the holy shotgun build to spam heavens Fury. Trinity doesnt Spam heavens fury even when I have the AOE for heavens fury set to just 1. It still uses normal attacks even when my wrath is full. The only time it really works is when im fighting a champion it pops all cool downs and spams Heavens Fury until the mob is dead. So my question is how can I make trinity kill all mobs with heavens fury like it does with elites and champions.... Thanks

(and yes I have the use Akarats off CD button checked)
 
You have to change code in Crusadercombat.cs.

Go DB- plugins- trinity-combat-abilities- crusadercombat.cs

and Find following code;


private static bool CanCastHeavensFury()
{
return CombatBase.CanCast(SNOPower.X1_Crusader_HeavensFury3) && (TargetUtil.EliteOrTrashInRange(16f) || TargetUtil.AnyMobsInRange(16, 1));


Delete : ClusterExists(15f, CrusaderSettings.HeavensfuryAoECount

And change code to red color line
Also, you have to check from time to time the code when you restart DB. somehow it goes back to original code, at least for me.


Credit: fujiyama
 
You have to change code in Crusadercombat.cs.

Go DB- plugins- trinity-combat-abilities- crusadercombat.cs

and Find following code;


private static bool CanCastHeavensFury()
{
return CombatBase.CanCast(SNOPower.X1_Crusader_HeavensFury3) && (TargetUtil.EliteOrTrashInRange(16f) || TargetUtil.AnyMobsInRange(16, 1));


Delete : ClusterExists(15f, CrusaderSettings.HeavensfuryAoECount

And change code to red color line
Also, you have to check from time to time the code when you restart DB. somehow it goes back to original code, at least for me.


Credit: fujiyama

Thanks for the help it works a lot better now... +rep
 
Back
Top