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

Seasonal modification on condemn build crusader

Like this?

statique bool CanCastCondemn privé ()
{
retour CanCast (SNOPower.X1_Crusader_Condemn) && Player.PrimaryResource> 36 && (TargetUtil.EliteOrTrashInRange (3f) || TargetUtil.AnyMobsInRange (3f, CrusaderSettings.CondemnAoECount));
}

can you give me the good code plz?
 
Still does not work Crusader sits there doing zero and dying...nothing i changed or did works
 
I can indeed confirm that this still works (and well at that).

That being said - Is there a way you can list the changes you have made. I know there are some of us that us that modify the combat files.
 
Main: Primary resource threshold in order to cast condemn as a spender skill;
Other modification: slightly reduce the radius for condemn skill, in order to hit more mobs to trigger BOP affix; Reduce mob counts for laws of valour - assume we all have enough CDR
 
Is this working with Trinity 2.1.9? If not how do I make it work?
Tried the 2.1.7 one but the crusader won't do anything...

Thanks!
 
Last edited:
Is this working with Trinity 2.1.9? If not how do I make it work?
Tried the 2.1.7 one but the crusader won't do anything...

Thanks!

Hmmm. Thats odd. I'm using 2.1.9 (EZUpdater updated) and its still running 100% fine for me. :(
 
using 2.1.5 do u have Combatcrusader for this version ? Thanks !
 
Hmmm. Thats odd. I'm using 2.1.9 (EZUpdater updated) and its still running 100% fine for me. :(

Are you using the attached file in first post or 2.1.7 version?

I'm using the attached file but it doesn't spam condemn on trash, just sometimes...
It's ok on elites/boss
 
Last edited:
Are you using the attached file in first post or 2.1.7 version?

I'm using the attached file but it doesn't spam condemn on trash, just sometimes...
It's ok on elites/boss
Same here

edit: Also, if you replace trinity's original files with it, it might disable trinity from the plugins window on db.
 
Last edited:
Can someone assist me with either a link to an older version of trinity or exactly what lines to modify to get this to work in trinity 2.1.12 if you simply replace the file db no longer loads trinity. Really interested in getting this running I have the shield blade of prophecy and the full akkahn set.
 
Can someone assist me with either a link to an older version of trinity or exactly what lines to modify to get this to work in trinity 2.1.12 if you simply replace the file db no longer loads trinity. Really interested in getting this running I have the shield blade of prophecy and the full akkahn set.

Here is Trinity 2.1.9 for ya man.

Edit: I have also included the CrusaderCombat.cs I'm using as well.
 

Attachments

Last edited:
Make sure that you have "Condemn AoE Count" set to a desirable number as well.
 
hey bro, tks for this. i personally made a diferent setup on condemn because i think it works better.
for me, there's no point on not cast condemn if the the wrath is full regardless how many mobs are around you. here is the code for those that would like to do it as well.

Code:
 private static bool CanCastCondemn()
        {
		return CanCast(SNOPower.X1_Crusader_Condemn) && Player.PrimaryResource > 36 && (TargetUtil.EliteOrTrashInRange(14f) || TargetUtil.AnyMobsInRange(13f, CrusaderSettings.CondemnAoECount) || Player.PrimaryResource >= 99);
        }
 
Back
Top