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

Monk: Combat Routine / Spam SW every 2 seconds

leov

New Member
Joined
Mar 23, 2014
Messages
76
Reaction score
0
Hey guys, I pretty much need to cast this every 2 seconds to keep the max stack of the Taeguk Gem (50 stacks or more), I do this when using the Inna's set so I have more DMG and Armor per stack.

Is there a way to achieve this editing the monk combat routine file? And how to do it?

Thanks!
 
There is a section for it in the routine and it says something like cast sweeping wind 2500-3000. I changed it to 1500-2000 and it help a lot. Those are milliseconds so 1.5-2.0 seconds.

Change:

Code:
  int swMinTime = 4000;
            int swMaxTime = 5400;
            if (CacheData.Inventory.EquippedIds.Contains(405804)) // Taeguk gem refresh (3 seconds)
            {
                swMinTime = 2000;
                swMaxTime = 2900;

To:

Code:
  int swMinTime = 4000;
            int swMaxTime = 5400;
            if (CacheData.Inventory.EquippedIds.Contains(405804)) // Taeguk gem refresh (3 seconds)
            {
              [B]  swMinTime = 1500;
                swMaxTime = 2000;[/B]
 
Last edited:
Tried that, didn't work. It doesn't spam SW at all.
 
Works for me, don't know what to tell ya. It won't start till it gets in combat at the first then it maintains about 60% uptime. Honestly, though the monk builds don't even need it for T6. Only higher grifts.
 
Works for me, don't know what to tell ya. It won't start till it gets in combat at the first then it maintains about 60% uptime. Honestly, though the monk builds don't even need it for T6. Only higher grifts.

Sometimes it keeps the buff, but most of the time it drops it, I tried different options and values, but none of them works. I was wondering if there is a way to have it spamming it every 2 sec no matter what, specially if using Innas set. With the Gem socketed, it gives a substantial buff to both armor and damage.
 
There definitely needs to be a way to prioritize it. You notice when it drops it's because your bot just did 4-5 things and sweeping wind was last in the chain of commands. I think you can rearrange the order of the operations to affect priority, but someone who knows more about that would need to set it up.
 
There definitely needs to be a way to prioritize it. You notice when it drops it's because your bot just did 4-5 things and sweeping wind was last in the chain of commands. I think you can rearrange the order of the operations to affect priority, but someone who knows more about that would need to set it up.

That may be the cause probably, good catch. Yeah, I have no idea about it, I could try to cut/paste the SW lines above in the coding, but dunno if it's gonna work. I'll give it a try tonight, and see what happens.
 
Back
Top