DB > Plugins > Trinity > Combat > Abilities > MonkCombat.cs
Open MonkCombat.cs, search for: private static bool CanCastSevenSidedStrike()
In that section, you will see:
Code:
return !IsCurrentlyAvoiding &&
[COLOR=#FF0000] (TargetUtil.AnyElitesInRange(15, 1)[/COLOR] || Player.CurrentHealthPct <= 0.55 || Legendary.Madstone.IsEquipped) &&
CanCast(SNOPower.Monk_SevenSidedStrike, CanCastFlags.NoTimer) &&
(Player.PrimaryResource >= 50 || (Player.PrimaryResource >= EnergyReserve && IsWaitingForSpecial));
Change
TargetUtil.AnyElitesInRange(15, 1) to
TargetUtil.AnyMobsInRange(15)
This will allow the bot to use SSS on trash mobs.
There are many variations of the MonkCombat.cs floating around. I personally have removed nearly everything inside that chunk of code. Mine looks like:
Code:
private static bool CanCastSevenSidedStrike()
{
return TargetUtil.AnyMobsInRange(15) && CanCast(SNOPower.Monk_SevenSidedStrike, CanCastFlags.NoTimer) && Player.PrimaryResource >= 50;
}
I wouldnt suggest using mine unless you have The Flow of Eternity, Madstone, Lion's Claw, The Fist of Az'turrasq, and 6pc Uliana's. But with all the gear, i can clear 55s really quickly, and 60 being the highest i let the bot clear. Clears T10 in ~3 minutes.