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

CrusaderCombat.cs tips

mcury85

New Member
Joined
Jul 21, 2014
Messages
5
Reaction score
0
Just wanna to share.

Benefits:
1- Shield Bash
2 - Laws of Justice
3 - Iron Skin
4 - AkaratsChampion > Not my credits.

Changes are to be performed at: \Demonbuddy\Plugins\Trinity\Combat\Abilities\CrusaderCombat.cs

Demonbuddy used: BETA 1.1.1926.418
Trinity used: 1.9.8

1st
Tip for shield bash:

Symptons:
"...for example stand in a huge crown and then charge away just to hit a single trash mob far away from everything else and then again and again and suddenly its away from all the mobs he was fighting at the start. He focus nothing and this is extremely irritating when fighting elite packs."

What it does:
Consists in stopping aiming random targets in the map, it will work just like punish and in case you use Consecration, this will help you to make use of the healing, as you won`t be jumping around using the shield bash.

How to:
Search for "Crusader_ShieldBash2" in your CrusaderCombat.cs file, and replace the lines by these:

// Shield Bash
if (CanCast(SNOPower.X1_Crusader_ShieldBash2))
{
return new TrinityPower(SNOPower.X1_Crusader_ShieldBash2, 7f, CurrentTarget.ACDGuid);
}

2nd and 3rd:
Tips for Iron Skin and Laws of justice:

Symptons:
Bot uses the skills with life full, almost all of the times wasting the skill.

What it does:
The only criteria to activate the skill now is the percentage set at Plugin Trinity options > Combat > Crusader

How to:

Laws of justice

// LawsOfJustice2
if (CanCast(SNOPower.X1_Crusader_LawsOfJustice2) && Player.CurrentHealthPct <= CrusaderSettings.LawsOfJusticeHpPct)
{
return new TrinityPower(SNOPower.X1_Crusader_LawsOfJustice2);
}

Iron skin:

private static bool CanCastIronSkin()
{
return CanCast(SNOPower.X1_Crusader_IronSkin) && Player.CurrentHealthPct <= CrusaderSettings.IronSkinHpPct;
}

And at last:

4th Tip:

This one is not mine, got from another tread:

Benefits:
It will only activate the skill once your life reaches 25% or less.
In case you use Phophet rune, it will help you to ressurrect.

private static bool CanCastAkaratsChampion()
{
return CanCast(SNOPower.X1_Crusader_AkaratsChampion) && (Player.CurrentHealthPct <= 0.25);
}

4th tip credits to "matter"
Post: https://www.thebuddyforum.com/demon...rinity/93720-trinity-questtools-download.html

in case of doubts or suggestions, please reply.

Regards,
 

Attachments

Last edited:
Actually both are doing the same thing.
My is checking at the configuration set at Trinity options, if I configure at trinity to use the Iron Skin at 50% of life, it`s pretty the same thing as you mentioned above.
 
Back
Top