• Visit Rebornbuddy
  • Modified Singular Combat Routine For Windwalker 6.0.2

    Discussion in 'Archives' started by Wushu, Oct 23, 2014.

    1. Wushu

      Wushu Member

      Joined:
      Aug 31, 2014
      Messages:
      53
      Likes Received:
      2
      Trophy Points:
      8
      Hello!

      DH: Glad you resolved this!

      Guard: I set it to activate when I drop below 70% health because with the new resolve I get a huge bubble when I take a lot of dmg. Once again I modified to how I play. If health dropped 30% that means you got hit hard and absorbs/heals you do then will be huge. I programmed it to maintain 2 chi for when health drops below 70% it will have those 2 chi available to cast Guard instantly or you can activate it yourself for those special circumstances. The only time you will drop to 1 chi is when you hit yellow or red stagger it will use Purify to clear it instantly otherwise you should always have 2 chi.

      EB: I set this to cast whenever I have 6+ stacks and it's permanently up for me. When I get to 6 stacks I hit and by the time 6 seconds has elapse I'm at 10+ stacks, when those 10 seconds have elapsed I've already been capped with 15 stacks and that's 15 seconds of the buff. Rinse and repeat.

      Hope this helps! If these settings aren't working out for you as I intended let me know. I can either change the settings or remove them so people can use these buffs when they like instead. Thank You for trying out my mods and the feedback! It is greatly appreciated! :eek:
       
      Last edited: Nov 3, 2014
    2. thatwouldbestealing

      thatwouldbestealing Member

      Joined:
      Oct 22, 2012
      Messages:
      510
      Likes Received:
      11
      Trophy Points:
      18
      Hi Wushu,

      That post is great, maybe you want to post something like that on to the OP -a little transparency allows us humble users to better appreciate your Routine's workings and then for us to play to its strengths! :brofist: Yes to be honest you have the rotation perfect, and I think for Klaxxi manual control won't be a problem timing active mitigation. So all in all your Routine is still kicking ass and throwing Kegs! :cool:

      Thanks again for the reply, best Monk profiles by far this patch!
       
    3. Wushu

      Wushu Member

      Joined:
      Aug 31, 2014
      Messages:
      53
      Likes Received:
      2
      Trophy Points:
      8
      Hi!

      I'm very happy that my reply was of help to you. Thank You for testing and asking questions because I'm sure other people have the same questions and now they have been answered thanks to you. Your post puts a smile on my face since it seems you appreciate the work I've done. Thank You! :eek:
       
      Last edited: Nov 4, 2014
    4. thatwouldbestealing

      thatwouldbestealing Member

      Joined:
      Oct 22, 2012
      Messages:
      510
      Likes Received:
      11
      Trophy Points:
      18
      I'm a coder myself -oldschool Microsoft ASP and a bit of .NET -so I appreciate the task you take on with something like a Combat Routine... and the added pressure that unlike an app or a database, there is no 'best way' to make a Combat Routine... rotations, circumstances, gear, playstyle they all change what we demand and expect from a Routine, so it's very cool when I see someone offer up their efforts. So good on you!

      Also the fact that you've come along and hands down are beating the legendary TuanHa's Monk routines in performance and reliability, in addition to improving greatly on vanilla Singular, deserves utmost respect.

      I'm sure there's lots of others like me out there who appreciate your efforts and I hope you get some more attention for it.

      I've got a 14/14 Mythic coming up tonight, and I'll be able to clear it a lot easier and be much more relaxed because of routines like yours doing the dirty work for me! ;)

      Cheers Wushu

      EDIT: it is casting Dizzying Haze, and I can't disable it via Singular. I can see several instances of it in the .cs files, I'd like to remove it completely and will give it a try. Will post back any feedback if I can figure out how to do it. Is this what we need to edit out to disable Dizzying Haze?

      Code:
      private static Composite _dishaze = null;
              private static Composite CreateDizzyingHazeSingleton()
              {
                  if (_dishaze == null)
                  {
                      _dishaze = new Throttle(
                          TimeSpan.FromMilliseconds(2500),
                          new PrioritySelector(
                              ctx => Unit.NearbyUnfriendlyUnits.FirstOrDefault(u => !Me.HasMyAura("Dizzying Haze") && (u.SpellDistance() > 15 || u.IsMovingAway())),
                              Spell.CastOnGround("Dizzying Haze", on => on as WoWUnit, req => true, false)
                              )
                          );
      
                  }
      
                  return _dishaze;
              }
      I've commented out calls to CreateDizzyingHazeSingleton() and attached the modified Brewmaster.cs for your attention, I'm testing now.

      EDIT2: yeah it's working, no more Dizzying Haze. (Updated 7th Nov @13:49 GMT)
      View attachment 150149 View attachment Brewmaster.cs
       
      Last edited: Nov 7, 2014
    5. Wushu

      Wushu Member

      Joined:
      Aug 31, 2014
      Messages:
      53
      Likes Received:
      2
      Trophy Points:
      8
      Hi!

      Sorry I didn't reply sooner. I've been busy. Don't delete the code. Disable Taunt in Singular. Let me know if it works. :eek:
       
      Last edited: Nov 8, 2014
    6. thatwouldbestealing

      thatwouldbestealing Member

      Joined:
      Oct 22, 2012
      Messages:
      510
      Likes Received:
      11
      Trophy Points:
      18
      Hey no problem -I'm watching Blizzcon virtual ticket (Live Raid just started, go Method!) -and after full Mythic last night I'm just chilling.

      I had edit the .cs file because disabling Singular taunt/pull via the GUI had no effect on Dizzying Haze being cast. I think generally as a Brewmaster, Dizzying Haze whilst extremely useful in some occasions, is way too dangerous if the bot gets it wrong in a Raid and generally isn't that necessary as Keg Smash generally distributes the debuff.

      All that said, the .cs file above still has the CreateDizzyingHazeSingleton() code in there but it's execution was commented out as needed and I believe there was another instance Dizzying Haze was being cast which was also commented out. Probably a very dirty way of disabling Dizzying Haze but it worked.

      Cheers

      ~G
       
    7. Wushu

      Wushu Member

      Joined:
      Aug 31, 2014
      Messages:
      53
      Likes Received:
      2
      Trophy Points:
      8
      I will do some testing and tie it to a singular setting. Will post when it's done. Thanks for testing and feedback. :eek:
       
    8. thatwouldbestealing

      thatwouldbestealing Member

      Joined:
      Oct 22, 2012
      Messages:
      510
      Likes Received:
      11
      Trophy Points:
      18
      Great stuff!
       
    9. fragnot

      fragnot Member

      Joined:
      Feb 19, 2012
      Messages:
      756
      Likes Received:
      1
      Trophy Points:
      18
      Hey Wushu, and thanks for contributing.

      Does anyone have an opinion how this performs vs Tuanha's Monk routine ?
       
    10. Wushu

      Wushu Member

      Joined:
      Aug 31, 2014
      Messages:
      53
      Likes Received:
      2
      Trophy Points:
      8
      New Brewmaster posted! :eek:
       
    11. thatwouldbestealing

      thatwouldbestealing Member

      Joined:
      Oct 22, 2012
      Messages:
      510
      Likes Received:
      11
      Trophy Points:
      18
      Good stuff, last full clear of Mythic happening today! Cheers Wushu
       
    12. gboz

      gboz New Member

      Joined:
      Oct 19, 2014
      Messages:
      16
      Likes Received:
      1
      Trophy Points:
      0
      Just letting you know that with the new Singular-4-3920 i'm getting errors now when i add your files to it Wushu.
       
    13. Wushu

      Wushu Member

      Joined:
      Aug 31, 2014
      Messages:
      53
      Likes Received:
      2
      Trophy Points:
      8
      I'm finishing up the modifications. Will post them soon. :eek:
       
    14. gboz

      gboz New Member

      Joined:
      Oct 19, 2014
      Messages:
      16
      Likes Received:
      1
      Trophy Points:
      0

      Thank you :p
       
    15. Crucia

      Crucia New Member

      Joined:
      Aug 5, 2010
      Messages:
      83
      Likes Received:
      1
      Trophy Points:
      0
      I'm looking forward to this! I'm pulling more DPS by hand than with Tuan's CR at the moment which was never the case.
       
    16. gboz

      gboz New Member

      Joined:
      Oct 19, 2014
      Messages:
      16
      Likes Received:
      1
      Trophy Points:
      0
      Same. His MW CR however is GREAT but the dps CR is "meh" compared to Wushu's.
       
    17. Staramajka

      Staramajka New Member

      Joined:
      Dec 10, 2011
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Hey any1 got talents that you use on 100th. I tried with Tuan's with recomended talents and it sucked lets say around 12k but when i changed acention to power strike i got 16k+ dps
       
    18. greenbrad

      greenbrad Community Developer

      Joined:
      Aug 10, 2012
      Messages:
      105
      Likes Received:
      0
      Trophy Points:
      16
      I get that exception when starting honorbuddy. That is with the newest singular. I can't find a link to download the version you said to use though

      v
       
      Last edited: Nov 21, 2014
    19. Crucia

      Crucia New Member

      Joined:
      Aug 5, 2010
      Messages:
      83
      Likes Received:
      1
      Trophy Points:
      0
      Any update on this? Anxiously awaiting!
       
    20. l337pally

      l337pally New Member

      Joined:
      Jun 24, 2011
      Messages:
      473
      Likes Received:
      2
      Trophy Points:
      0
      Any news on an update for this please
       

    Share This Page