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

Monk Seven Sided Strike

dobry

New Member
Joined
Sep 9, 2014
Messages
86
Reaction score
0
hey fellow botters,

so i am happy that with newest DB Update and old trinity we can go riftin now and i have the Uliana Set full Lion Fist Weapon etc but my Monk never uses or very rarely the spell Seven-Sided-Strike and maybe somebody can help me how i can tweak it in trinity or config or elsewhere that he uses that more often or on CD plz would be very great if that could be possible.

Thx in Advance.

using DB 422
Trinity 2.13
Adventurer
 
I'm having the same problem. Monk just rarely uses any spirit generator and always tries to use the spirit spender instead.
 
View attachment MonkCombat.cs

For use with Trinity 2.13

Replace the one in the Trinity Plugin with that one. It seems to be working ok for me. I replaced the cast for EP with WotHF and changes SSS to be used on CD if the target has EP.

I won't pretend it's perfect, I am not a programmer but i wanted to go for the Ulianas build.

http://www.diablofans.com/builds/57405-quin69-gr69-ulianas-monk

edit: Please note that if you don't have at least 2 piece Ulianas this won't really help you.
 
Last edited:
hey fellow botters,

so i am happy that with newest DB Update and old trinity we can go riftin now and i have the Uliana Set full Lion Fist Weapon etc but my Monk never uses or very rarely the spell Seven-Sided-Strike and maybe somebody can help me how i can tweak it in trinity or config or elsewhere that he uses that more often or on CD plz would be very great if that could be possible.

Thx in Advance.

using DB 422
Trinity 2.13
Adventurer

Please post in the trinity section any problems recommendations and potential fixes So that both trinity's can be updated.
 
hey fellow botters,

so i am happy that with newest DB Update and old trinity we can go riftin now and i have the Uliana Set full Lion Fist Weapon etc but my Monk never uses or very rarely the spell Seven-Sided-Strike and maybe somebody can help me how i can tweak it in trinity or config or elsewhere that he uses that more often or on CD plz would be very great if that could be possible.

Thx in Advance.

using DB 422
Trinity 2.13
Adventurer


Open up trinity combat > abilities > monk config and make the line look like:

private static bool CanCastSevenSidedStrike()
{
return !IsCurrentlyAvoiding &&
(CanCast(SNOPower.Monk_SevenSidedStrike, CanCastFlags.NoTimer) &&
((Player.PrimaryResource >= 20 && !IsWaitingForSpecial) || Player.PrimaryResource >= EnergyReserve);
}


You're welcome
 
That's only a partial fix, I tried something similar but it just casted SSS right away without applying EP. The CS file I posted up above has an EP check and will use WotHF to apply EP (and focus/restraint)
 
Well i have full set + the helm that applies EP, so it worked out fine for me :D but yea yours is better but more work that i didn't feel like doing :P
 
View attachment 186076

For use with Trinity 2.13

Replace the one in the Trinity Plugin with that one. It seems to be working ok for me. I replaced the cast for EP with WotHF and changes SSS to be used on CD if the target has EP.

I won't pretend it's perfect, I am not a programmer but i wanted to go for the Ulianas build.

http://www.diablofans.com/builds/57405-quin69-gr69-ulianas-monk

edit: Please note that if you don't have at least 2 piece Ulianas this won't really help you.
You sir are awesome. Your cs works like a charm. Wont even update DB anymore to let it run smooth as it runs now. <3
 
View attachment 186076

For use with Trinity 2.13

Replace the one in the Trinity Plugin with that one. It seems to be working ok for me. I replaced the cast for EP with WotHF and changes SSS to be used on CD if the target has EP.

I won't pretend it's perfect, I am not a programmer but i wanted to go for the Ulianas build.

http://www.diablofans.com/builds/57405-quin69-gr69-ulianas-monk

edit: Please note that if you don't have at least 2 piece Ulianas this won't really help you.

Thanks this seems to be working great.
 
sorry
why am copy MonkCombat.cs in trinity but trinity is not show in DB manu
 
sorry
why am copy MonkCombat.cs in trinity but trinity is not show in DB manu

If you used my fix, I fucked up with ( ) 's, Replace it with:


Code:
        private static bool CanCastSevenSidedStrike()
        {
            return !IsCurrentlyAvoiding &&
                   (
			CanCast(SNOPower.Monk_SevenSidedStrike, CanCastFlags.NoTimer) &&
                   	(
				(Player.PrimaryResource >= 20 && !IsWaitingForSpecial) || Player.PrimaryResource >= EnergyReserve
			)
		    );
        }
 
View attachment 186076

For use with Trinity 2.13

Replace the one in the Trinity Plugin with that one. It seems to be working ok for me. I replaced the cast for EP with WotHF and changes SSS to be used on CD if the target has EP.

I won't pretend it's perfect, I am not a programmer but i wanted to go for the Ulianas build.

http://www.diablofans.com/builds/57405-quin69-gr69-ulianas-monk

edit: Please note that if you don't have at least 2 piece Ulianas this won't really help you.

My bot is spamming mantra instead of casting SSS, And it occasionally it stops attacking and not generating spirit
 
Hmm, just got the madstone. So is there a way for him to just spam it as long as spirit is above 50% on top of checking for EP?
 
Hmm, just got the madstone. So is there a way for him to just spam it as long as spirit is above 50% on top of checking for EP?

Open up monkcombat.cs in notepad and look for the line that reads: private static bool CanCastSevenSidedStrike()

then replace it with what i placed below. It will spam it.



Code:
   private static bool CanCastSevenSidedStrike()
        {
            return !IsCurrentlyAvoiding && Skills.Monk.ExplodingPalm.IsTrackedOnUnit(CurrentTarget) &&
                   (TargetUtil.AnyMobsInRange(1) || Player.CurrentHealthPct <= 0.55 || Legendary.Madstone.IsEquipped) && 
                   CanCast(SNOPower.Monk_SevenSidedStrike, CanCastFlags.NoTimer) &&
                   ((Player.PrimaryResource >= 30 && !IsWaitingForSpecial) || Player.PrimaryResource >= EnergyReserve);
        }
 
The new trinity 2.13.5 has support for Madstone already I am pretty sure. Just download the newest one.

It also has the logic in place for SSS you just have to turn on the new "Cast Primary Before SSS" and "Disable Exploding Palm" for it to work with 6 piece Uliana's.

I've request that they reduce the requirement since you don't need full build to make SSS worth it but it's all pretty much there.
 
Back
Top