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

Crusader won't cast Slash - Instead, waits on wrath for condemn.

Do you have the shield that makes condemn have a wrath cost instead of a cooldown? Trinity doesn't handle it, so CanCast always returns true since it only looks for the cooldown.

Modify the CrusaderCombat.cs file to:

private static bool CanCastCondemn()
{
return CanCast(SNOPower.X1_Crusader_Condemn) && Player.PrimaryResource >= 40 && (TargetUtil.EliteOrTrashInRange(15f) || TargetUtil.AnyMobsInRange(15f, CrusaderSettings.CondemnAoECount));
}
 
Do you have the shield that makes condemn have a wrath cost instead of a cooldown? Trinity doesn't handle it, so CanCast always returns true since it only looks for the cooldown.

Modify the CrusaderCombat.cs file to:

private static bool CanCastCondemn()
{

return CanCast(SNOPower.X1_Crusader_Condemn) && Player.PrimaryResource >= 40 && (TargetUtil.EliteOrTrashInRange(15f) || TargetUtil.AnyMobsInRange(15f, CrusaderSettings.CondemnAoECount));
}



i love you man!!!!!!!!!

being looking for fix for 4 days now
 
Thanks sir

this also fixes the problem with Heaven's fury never being cast
 
Do you have the shield that makes condemn have a wrath cost instead of a cooldown? Trinity doesn't handle it, so CanCast always returns true since it only looks for the cooldown.

Modify the CrusaderCombat.cs file to:

private static bool CanCastCondemn()
{
return CanCast(SNOPower.X1_Crusader_Condemn) && Player.PrimaryResource >= 40 && (TargetUtil.EliteOrTrashInRange(15f) || TargetUtil.AnyMobsInRange(15f, CrusaderSettings.CondemnAoECount));
}
Thanks for the insight. This problem will be fixed in the next version of Trinity :)
 
Any chance to look at why the Crusader doesn't use Phalanx during trial rifts ?/

G

Probably has something to do with there being no elites, mine works fine and I to have it cast phalanx as often as possible I use. It gets kind of spammy on harder content should you run out of wrath, but my crusader is hardcore so I don't bot content that hard.

private static bool CanCastPhalanx()
{
return CanCast(SNOPower.x1_Crusader_Phalanx3);
}
 
Probably has something to do with there being no elites, mine works fine and I to have it cast phalanx as often as possible I use. It gets kind of spammy on harder content should you run out of wrath, but my crusader is hardcore so I don't bot content that hard.

private static bool CanCastPhalanx()
{
return CanCast(SNOPower.x1_Crusader_Phalanx3);
}
Thanks, I'll give it a whirl.

Now if we could only stop the crusader wasting time killing white mobs in Grifts all would be good.

G
 
Back
Top