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

Crusader Akarats Zero CD

is there anyway to set it so it uses akarats on cd?
Go to DB\Plugins\Trinity\Combat\Abilities\ and open CrusaderCombat.cs file

Find this


private static bool CanCastAkaratsChampion()
{
return CanCast(SNOPower.X1_Crusader_AkaratsChampion) && (TargetUtil.EliteOrTrashInRange(16f) || Player.CurrentHealthPct <= 0.25);
}
and change for this


private static bool CanCastAkaratsChampion()
{
return CanCast(SNOPower.X1_Crusader_AkaratsChampion);
}
Now your Crusader use Akarats champion by cooldown.
 
How would I make it use heavens fury as its main attack almost all the time? I run zero builder and it doesnt seem to want to use heavens fury all the time
 
thank you works perfect!

by thw way . How do I set up close to let Fires of Heaven cast?:confused:
 
How would I make it use heavens fury as its main attack almost all the time? I run zero builder and it doesnt seem to want to use heavens fury all the time

hey :)

Go to DB\Plugins\Trinity\Combat\Abilities\ and open CrusaderCombat.cs file

look for :

private static bool CanCastHeavensFury()
{
return CanCast(SNOPower.X1_Crusader_HeavensFury3) && (TargetUtil.EliteOrTrashInRange(16f) || TargetUtil.ClusterExists(15f, CrusaderSettings.HeavensFuryAoECount));
}

change it for :

private static bool CanCastHeavensFury()
{
return CanCast(SNOPower.X1_Crusader_HeavensFury3);
}

should be working by cooldown with that setting :)
tested and working for me
plz confirm me if it is working :)
 
Back
Top