• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • TuanHA Monk - The Ultimate Experience

    Discussion in 'Archives' started by tuanha, Oct 14, 2012.

    1. dwarc2

      dwarc2 New Member

      Joined:
      Oct 2, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      Can you update the ww rotation for 5.1 ? there is a beta client out now.
       
    2. shazbawt

      shazbawt New Member Legendary

      Joined:
      Nov 27, 2012
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      I went ahead and fixed the Mistweaver Fistweaving for 5.1 (Tiger Power only needs 1 stack and the CS was spamming it trying to get to 3) and fixed the falloff for Serpent's Zeal

      Enjoy, fix has been tested in a 25M LFR with Fistweaving Enabled. Basically putting this out there for us Mistweavers that rely on this CS for raiding and need to Fistweave after the patch and don't want to wait for an update

      Replace the lines for Tiger Palm and Blackout Kick with these in your THMistweaver.cs

      Code:
                      new Decorator(
                          ret =>
                          THMistweaver.Instance.SUseTigerPalm &&
                          THMistweaver.Instance.SFistweave &&
                          !CastingorGCDL() &&
                          ValidUnit(Me.CurrentTarget) && IsEnemy(Me.CurrentTarget) &&
                          Me.CurrentTarget.IsWithinMeleeRange &&
                          TigerPalmFistWeave() && // TODO: Merge with Function.
      					//Shazbawt's Fistweaving Fix
                          (Me.CurrentChi >= 1) && (Me.ManaPercent > THMistweaver.Instance.SFistWeavePerc) &&
                          (((MyAuraTimeLeft("Tiger Power", Me) < 7500))&&
                           SpellManager.HasSpell("Tiger Palm")),
                          new Action(delegate
                                         {
                                             FaceUnit(Me.CurrentTarget);
                                             CastSpell("Tiger Palm", Me.CurrentTarget);
                                             return RunStatus.Success;
                                         })
                          ),
                      new Decorator(
                          ret =>
                          THMistweaver.Instance.SUseBlackoutKick &&
                          THMistweaver.Instance.SFistweave &&
                          !CastingorGCDL() && !Me.Mounted &&
                          ValidUnit(Me.CurrentTarget) && IsEnemy(Me.CurrentTarget) &&
                          Me.CurrentTarget.IsWithinMeleeRange &&
      					//Shazbawt's Fistweaving Fix
                          (Me.CurrentChi >= 2) && (Me.ManaPercent > THMistweaver.Instance.SFistWeavePerc) &&
                          (((MyAuraTimeLeft("Serpent's Zeal", Me) < 7500) || (MyAuraStackCount("Serpent's Zeal", Me) < 2) ||
                            !Me.HasAura("Serpent's Zeal")) &&
                           SpellManager.HasSpell("Teachings of the Monastery")),
                          new Action(delegate
                                         {
                                             FaceUnit(Me.CurrentTarget);
                                             CastSpell("Blackout Kick", Me.CurrentTarget);
                                             return RunStatus.Success;
                                         })
                          ),
      
       
      Last edited: Nov 27, 2012
    3. CrazyJosh

      CrazyJosh Member

      Joined:
      Nov 30, 2010
      Messages:
      287
      Likes Received:
      0
      Trophy Points:
      16
      It's already finished being updated for 5.1. I just haven't uploaded it to the svn yet.
       
    4. Jetparsing

      Jetparsing New Member

      Joined:
      Sep 29, 2012
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0

      Is there a public non donation SVN update? Am I just blind and can't see it?
       
    5. Jetparsing

      Jetparsing New Member

      Joined:
      Sep 29, 2012
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0
      Rotation

      Horde
      BE Monk

      HB beta version .68
      TuanHA monk free

      The rotation doesn't include blackout kick. I'm not sure why it's using tigers palm repeatedly. Should only use it to keep buff up.

      Not sure if the fight was too short to get to the point of the rotation, but even so tigers palm should only be used to refresh.

      View attachment 21040 2012-11-27 18.36.txt
       
      Last edited: Nov 27, 2012
    6. shazbawt

      shazbawt New Member Legendary

      Joined:
      Nov 27, 2012
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      Here is the fix for the Tiger Palm spam trying to get 3 stacks for WWs

      Code:
                      new Decorator(
                          ret =>
                              THWindwalker.Instance.SUseTigerPalm &&
                              !CastingorGCDL() && Me.GotTarget &&
                              ValidUnit(Me.CurrentTarget) && IsEnemy(Me.CurrentTarget) &&
                              IsFacing(Me.CurrentTarget) &&
                              IsUnitInRange(Me.CurrentTarget) &&
                              Me.CurrentChi >= 1 &&
                              (!Me.HasAura("Tiger Power") ||
      						//Shazbawt changes
                               (Me.HasAura("Tiger Power") && Me.GetAuraByName("Tiger Power").StackCount < 1) ||
                               (Me.HasAura("Tiger Power") &&
                                Me.GetAuraByName("Tiger Power").TimeLeft.TotalMilliseconds <= (3250 + MyLatency))) &&
                              SpellManager.HasSpell("Tiger Palm"),
                              new Action(delegate { CastWindwalkerSpell("Tiger Palm", Me.CurrentTarget); return RunStatus.Success;})
                          ),
      
       
      Last edited: Nov 27, 2012
    7. cameronmc88

      cameronmc88 Member

      Joined:
      Jun 25, 2012
      Messages:
      241
      Likes Received:
      1
      Trophy Points:
      18
      How good is windwalker PvP for arena? using this CC
       
    8. CrazyJosh

      CrazyJosh Member

      Joined:
      Nov 30, 2010
      Messages:
      287
      Likes Received:
      0
      Trophy Points:
      16
      I don't think that will work. Tiger Power nolonger has stacks. It should just be
      Code:
       !Me.HasAura("Tiger Power")
       
    9. Jetparsing

      Jetparsing New Member

      Joined:
      Sep 29, 2012
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0
      Where do I put this?
       
    10. maceyp

      maceyp New Member

      Joined:
      Jan 9, 2011
      Messages:
      49
      Likes Received:
      0
      Trophy Points:
      0
      You dont need to, as CrazyJosh has already stated, he has updated the files already for patch 5.1 he just hasnt released the svn yet :)
       
    11. dwarc2

      dwarc2 New Member

      Joined:
      Oct 2, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      confirmed does not work ;x
       
    12. Jetparsing

      Jetparsing New Member

      Joined:
      Sep 29, 2012
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0

      Where can I edit this? I'm in a raid now so it'd be nice to have this fix. i'm currently just blackout kicking manually.
       
    13. Jetparsing

      Jetparsing New Member

      Joined:
      Sep 29, 2012
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0

      Is there a public SVN? I can't find it.
       
    14. cameronmc88

      cameronmc88 Member

      Joined:
      Jun 25, 2012
      Messages:
      241
      Likes Received:
      1
      Trophy Points:
      18
      CrazyJosh how is Windwalker PvP?
       
    15. rodxuxa

      rodxuxa New Member

      Joined:
      Oct 26, 2012
      Messages:
      102
      Likes Received:
      1
      Trophy Points:
      0
      Hi everyone, im a special donor and just started using the Brew Monk today after the 5.1, with the beta HB (yeah, rough!).

      I've tried the Special Mistweaving before, just a bit, and was marvelous (lv 60 or so). But i have set foot on dungeons with my Brewmaster as lv80 and sometimes it seems he just stands there taking hits doing nothing sometimes. And, my second issue, shouldn't he open with Keg Smash for a instant and aoe control aggro? Its kinda must-have, in my humble noob-ass lowbie monk opinion.

      Looking forward for your feedback!
       
    16. Jetparsing

      Jetparsing New Member

      Joined:
      Sep 29, 2012
      Messages:
      50
      Likes Received:
      0
      Trophy Points:
      0
      To my knowledge this is a 90 only, or at least 85+ CC. But don't quote me on it. On my monk it opens with the dizzying haze thing, throws it at all the targets.
       
    17. dwarc2

      dwarc2 New Member

      Joined:
      Oct 2, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
    18. CrazyJosh

      CrazyJosh Member

      Joined:
      Nov 30, 2010
      Messages:
      287
      Likes Received:
      0
      Trophy Points:
      16
      Update and give me a new log please.
       
    19. james7360

      james7360 New Member

      Joined:
      Jul 13, 2010
      Messages:
      140
      Likes Received:
      0
      Trophy Points:
      0
      im using this right now. im using the hb beta so i could raid tonight.
      better then my old settings and/or cc improvement good job guys and thanks so much mosuri for your set up let me know if you change it up at all for the patch.
      i might change renewing mist to 100% just so its up all the time. but other then that amazing.
       
    20. Madhatt5r

      Madhatt5r New Member

      Joined:
      Apr 12, 2011
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      0
      I've updated to 21 while it works better than before the updates.. It is not using Jab for me at all.

      Forgot to post what the log says. All it does during combat is spam this over and over...

      Code:
      ~~~~~~~~~~~~~~~
      Not in GCD > CB>TP
      CB>BK
      Use TigerPalm
      (Me.CurrentEnergy >= 40) && (Me.CurrentChi <= Me.MaxChi)
      SCK
      Jab
      ~~~~~~~~~~~~~~~
      Not in GCD > CB>TP
      CB>BK
      Use TigerPalm
      (Me.CurrentEnergy >= 40) && (Me.CurrentChi <= Me.MaxChi)
      SCK
      Jab
       
      Last edited: Nov 27, 2012

    Share This Page