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

Taeguk gem + mopnk

Tajuh

Member
Joined
Dec 10, 2014
Messages
72
Reaction score
0
So I noticed that the bot will cast a mantra inbetween packs to keep the gem stacks going, about 1 cast every 2s, which hampers spirit. This is gem issue not mantra issue as I have the "Disable Mantra Spam" box checked.
 
Make it spam sweeping wind, with 2pc innas youll be spending 5 spirit per taeguk charge. and if you have 10% into RCR, and even with no spirit regen on items. you will be spending like 2 spi per cast, basically you can spam 5spi SW almost nonstop and itll go down 1 spirit maybe every 25-30 clicks because it recovers so quick. If anything just do a hackjob and take the monk routine and change the 'spam SW on low hp' enable it in trinity, and in the monk combat routine .cs change the health value to 100% instead of whatever it is. that way your always casting SW, be sure to set like a 1000ms delay or whatever I guess.
 
@TS I had the same problem before. Disable the "Always use SW before WoL" that way it won't spam SW and eat your spirit.

@Syn-Ack I have a problem with 2pcs Inna's. When I use chest and pants inna's and try to spam SW, Taeguk doesn't trigger, but if I put back my cindercoat then Taeguk triggers. I'm not sure what exactly the problem but maybe I will try to use 2pcs Inna's again after I get different part.
 
RCR cannot be above 6.6% sheet for taeguk to proc from SW (if using innas then @6.6% RCR you are casting SW@1spirit due to blizz stupid formulas) I assume you using fire hexwuko?
 
Last edited:
Do you guys just post without reading? The issue is that I cant make bot NOT spam mantra, if I have mantra set and taeguk gem on them bot will cast. I know how to play, bot doesn't. This was intended as FYI to devs for future update, I'm sure it's simple fix. everything you 3 posted above is irrelevant to this thread, thanks.
 
Do you guys just post without reading? The issue is that I cant make bot NOT spam mantra, if I have mantra set and taeguk gem on them bot will cast. I know how to play, bot doesn't. This was intended as FYI to devs for future update, I'm sure it's simple fix. everything you 3 posted above is irrelevant to this thread, thanks.

well as you replied is such an asswipe way, maybe I should respond in kind., nah fuck it I will give a helping hand instead.

simply edit the monk.cs (here is the section you are looking for) and change player resource to something stupid like >=99999 meaning it will never spam

Code:
// 4 Mantra spam for the 4 second buff
            if (!UseOOCBuff && !IsCurrentlyAvoiding && !Player.IsIncapacitated && !Settings.Combat.Monk.DisableMantraSpam)
            {
                if (CanCast(SNOPower.X1_Monk_MantraOfConviction_v2) && TimeSincePowerUse(SNOPower.X1_Monk_MantraOfConviction_v2) > 1000 && (!GetHasBuff(SNOPower.X1_Monk_MantraOfConviction_v2) ||
                    (hasSWK && TargetUtil.AnyMobsInRange(10f))) && (Player.PrimaryResource >= 80))
                {
                    return new TrinityPower(SNOPower.X1_Monk_MantraOfConviction_v2, 3);
                }

                if (CanCast(SNOPower.X1_Monk_MantraOfRetribution_v2) && TimeSincePowerUse(SNOPower.X1_Monk_MantraOfRetribution_v2) > 1000 && (!GetHasBuff(SNOPower.X1_Monk_MantraOfRetribution_v2) ||
                    (hasSWK && TargetUtil.AnyMobsInRange(10f))) && (Player.PrimaryResource >= 80))
                {
                    return new TrinityPower(SNOPower.X1_Monk_MantraOfRetribution_v2, 3);
                }
                if (CanCast(SNOPower.X1_Monk_MantraOfHealing_v2) && TimeSincePowerUse(SNOPower.X1_Monk_MantraOfHealing_v2) > 1000 && (!GetHasBuff(SNOPower.X1_Monk_MantraOfRetribution_v2) ||
                    (hasSWK && TargetUtil.AnyMobsInRange(10f))) && (Player.PrimaryResource >= 80))
                {
                    return new TrinityPower(SNOPower.X1_Monk_MantraOfHealing_v2, 3);
                }
                if (CanCast(SNOPower.X1_Monk_MantraOfEvasion_v2) && TimeSincePowerUse(SNOPower.X1_Monk_MantraOfEvasion_v2) > 1000 && (!GetHasBuff(SNOPower.X1_Monk_MantraOfRetribution_v2) ||
                    (hasSWK && TargetUtil.AnyMobsInRange(10f))) && (Player.PrimaryResource >= 80))
                {
                    return new TrinityPower(SNOPower.X1_Monk_MantraOfEvasion_v2, 3);
                }
            }

            // Mantra Of Salvation With Taeguk Gem
            if (UseOOCBuff && CanCast(SNOPower.X1_Monk_MantraOfEvasion_v2) && GetHasBuff(SNOPower.ItemPassive_Unique_Gem_015_x1))
            {
                return new TrinityPower(SNOPower.X1_Monk_MantraOfEvasion_v2);
            }

it takes a whole 30 seconds and FYI I have disable mantra on and it never casts a mantra spam, maybe you need a fresh install?

(and my reply was to correct syn regarding blizz stupid formula as technically she is right you should be able to play with 10%RCR @ 5 spirit but blizz don't seem able to add up properly)
 
Back
Top