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

Does anyone know the optimal build/items for a shotgun crusader?

knf

New Member
Joined
May 11, 2014
Messages
5
Reaction score
0
like absolute necessary minimum cdr required etc.?

if anyone could help thanks!
 
yes, thats it, but i have already full set akkan and shotgun build, i am interested in settings in trinity for crusider for shotgun build) where i can finde them? thanks
 
yes, thats it, but i have already full set akkan and shotgun build, i am interested in settings in trinity for crusider for shotgun build) where i can finde them? thanks

There is only one thing in Trinity setting you need to change or check.

Go to DB - plugin -config- combat - crusader- check the box for " Akarat champion cd off"

If you are looking for Heavens Fury tweak, you need to go to; DB- Trinity - combat-abilities - crusadercombat.cs

and find following;

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

Change to:

return CombatBase.CanCast(SNOPower.X1_Crusader_HeavensFury3) && (TargetUtil.EliteOrTrashInRange(16f) || AnyMobsInRange(16, 1));


(16, 1)); is same as (16f, 1));
 
Last edited:
There is only one thing in Trinity setting you need to change or check.

Go to DB - plugin -config- combat - crusader- check the box for " Akarat champion cd off"

If you are looking for Heavens Fury tweak, you need to go to; DB- Trinity - combat-abilities - crusadercombat.cs

and find following;

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

Change to:

return CombatBase.CanCast(SNOPower.X1_Crusader_HeavensFury3) && (TargetUtil.EliteOrTrashInRange(16f) || AnyMobsInRange(16, 1));


(16, 1)); is same as (16f, 1));

AnyMobsInRange(16, 1));
its radius?

something not work, Akarat champion cd off i have checked

but thanks for your post
 
make sure you close DB before editing the crusadercombat.cs.
 
AnyMobsInRange(16, 1));
its radius?

something not work, Akarat champion cd off i have checked

but thanks for your post



AnyMobsInRange(16, 1));

yes.
16 is 16f, radius and 1 is mob number so your character will attack with Heavens Fury even one mob is there.

And make sure your DB is off ( as mentioned by other) and uncheck rixx's auto update tool ( if you have it in plugins), otherwise it will go back to old version of combat.cs


Also make sure spelling is correct and semi colon is not missing at the end
 
Last edited:
Back
Top