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

TuanHA Monk

Status
Not open for further replies.
hey Crazor where you using 2 one handers or a two hander weapon?
Hey, sorry to butt in on the conversation, but my monk is a brewmaster. I'm dual wielding two maces. When I tank in dungeons I practically double the dps of the highest dps class. It's not that great since I'm only level 67 right now, but I still find that to be awesome. Tanking is great using this CC.
 
I had a bug with Spear Hand Strike. It was trying to use it on the mage when it wasn't in range. It was very close, like 1-2 steps away from range. Attached is the log.
 

Attachments

37:799 - HP: 78% - Energy: 100 - Chi: 0 - Mage - 5y - 100% hp - Spear Hand Strike

We all know that "Spear Hand Strike" has 5 yard range, the log report 5 yard but still out of range...

There something wrong with HB API "Me.CurrentTarget.IsWithinMeleeRange", I gotta find a alternative way to fix it.

This is the full code, if some devs can help to fix the issues, it really appreciated.

Code:
                new Decorator(
                    ret =>
                    THSettings.Instance.SSpearHandStrike &&
                    ValidUnit(Me.CurrentTarget) && IsEnemy(Me.CurrentTarget) &&
                    Me.IsFacing(Me.CurrentTarget) &&
                    Me.CurrentTarget.IsWithinMeleeRange &&
                    Me.CurrentTarget.IsCasting && Me.CurrentTarget.CanInterruptCurrentSpellCast &&
                    (Me.CurrentEnergy >= 30 || SpellManager.HasSpell("Brewmaster Training")) &&
                    SpellManager.HasSpell("Spear Hand Strike") &&
                    SpellManager.Spells["Spear Hand Strike"].CooldownTimeLeft.TotalMilliseconds <= MyLatency,
                    new Action(delegate
                                   {
                                       ConstantFace(Me.CurrentTarget);
                                       CastSpell("Spear Hand Strike", Me.CurrentTarget);
                                       return RunStatus.Failure;
                                   })
                    ),
 
tuanha,
I have been using your cc now for a couple of days (I finally broke off from my hunter to start a monk 2 days ago) and from level 1 to level 48, so far, it has been nothing but pure gold. You have made such an awesome CC and if anyone is looking for a review of it, it is definitely one of the best I have used.

FPS was definitely spot on when he said that this CC is amazing.

+rep to you, sir.

This is the kind of work I would be happy to donate to (and not even for the extra goodies). When stuff like this comes out and is updated frequently to make it better, it deserves to be rewarded. Kudos!
 
Thank guys for compliments,

You make me feel so motivated...

I hope Mistweaver (which under development) is not disappointing, first time play a "strange" healing class that melee and heal... will be an epic experience :)
 
Thank guys for compliments,

You make me feel so motivated...

I hope Mistweaver (which under development) is not disappointing, first time play a "strange" healing class that melee and heal... will be an epic experience :)

Tuanha,

My guild is running Mogu'shan Vaults 10 man this week and I will let you know how my level 90 monk gets on and report feedback, I am going as a DPS this week but my main spec is Mistweaver (not switching until your CC is ready lol).

I can say that on Heroics the Windwalker DPS is sweet, kicking out some nice numbers. What's even more impressive is that I am higher DPS in questing greens than most people I group with who's gear is much better than mine.

Keep up the excellent work on this wonderful CC. So looking forward to healing.

Will post something to you after the raid.

Thanks
 
just hit 90 aswell! used this leveling as brewmaster in dungeons, as soon as i hit 90 i changed to windwalker and was topping DPS in quest gear haha, holds 40-50k(single target) in quest gear cant wait to see what this does in decent gear, thnx
 
Last edited:
Gratz HoneyBrew, u 90 finally.

Right after 90, i go tank heroic and it's a good + fast run, no one die.

Then I got crazy idea, switch to Mistweaver and heal manually to learn mechanic on a NON-Heroic dungeon.

End boss fight, everyone die, I run out of mana at 1/2 fight... leave group in shame before they kick me out.

I realized that I'm just a terrible player without a bot lol
 
Gratz HoneyBrew, u 90 finally.

Right after 90, i go tank heroic and it's a good + fast run, no one die.

Then I got crazy idea, switch to Mistweaver and heal manually to learn mechanic on a NON-Heroic dungeon.

End boss fight, everyone die, I run out of mana at 1/2 fight... leave group in shame before they kick me out.

I realized that I'm just a terrible player without a bot lol


hahah I know what you mean tuanha, a while back when HB was down, i tryed to heal on my shaman.. everyone died :P
 
Which build did you find was easiest and fastest to level with? Brew or Wind?
 
Which build did you find was easiest and fastest to level with? Brew or Wind?
I personally like Brewmaster, but I hear Windwalker has great dps from those that are using it. I like the DPS+Survivability that Brewmaster gives though. I die less using BM than I do using WW.
 
37:799 - HP: 78% - Energy: 100 - Chi: 0 - Mage - 5y - 100% hp - Spear Hand Strike

We all know that "Spear Hand Strike" has 5 yard range, the log report 5 yard but still out of range...

There something wrong with HB API "Me.CurrentTarget.IsWithinMeleeRange", I gotta find a alternative way to fix it.

This is the full code, if some devs can help to fix the issues, it really appreciated.

Code:
                new Decorator(
                    ret =>
                    THSettings.Instance.SSpearHandStrike &&
                    ValidUnit(Me.CurrentTarget) && IsEnemy(Me.CurrentTarget) &&
                    Me.IsFacing(Me.CurrentTarget) &&
                    Me.CurrentTarget.IsWithinMeleeRange &&
                    Me.CurrentTarget.IsCasting && Me.CurrentTarget.CanInterruptCurrentSpellCast &&
                    (Me.CurrentEnergy >= 30 || SpellManager.HasSpell("Brewmaster Training")) &&
                    SpellManager.HasSpell("Spear Hand Strike") &&
                    SpellManager.Spells["Spear Hand Strike"].CooldownTimeLeft.TotalMilliseconds <= MyLatency,
                    new Action(delegate
                                   {
                                       ConstantFace(Me.CurrentTarget);
                                       CastSpell("Spear Hand Strike", Me.CurrentTarget);
                                       return RunStatus.Failure;
                                   })
                    ),



SpellManager.Spells["Spear Hand Strike"].CooldownTimeLeft.TotalMilliseconds <= MyLatency,


MyLatency = Local Latency , World Latency or Highest ? Maybe here is the problem.
 
SpellManager.Spells["Spear Hand Strike"].CooldownTimeLeft.TotalMilliseconds <= MyLatency,


MyLatency = Local Latency , World Latency or Highest ? Maybe here is the problem.

Its between 0 and 400... so that wont be an issue :-)
 
Hey, sorry to butt in on the conversation, but my monk is a brewmaster. I'm dual wielding two maces. When I tank in dungeons I practically double the dps of the highest dps class. It's not that great since I'm only level 67 right now, but I still find that to be awesome. Tanking is great using this CC.

Wait till you get to 90 and do heroics, theres some fights with lots of adds I pull around 130k dps. My max highest dps so far in a dungeon was just about 185k. thats DPS spec, tank I break 100k pretty much every pull with 3+ mobs in it
 
In love with all your Rotuines/CC's <3 Holy Pala's was awesome in Cata. havent used it since but i love this one <333333333333333
 
This CC really encouraged me to make a monk, I've only used this for an hour barely and everything works really smooth so far. Btw, the interface is so hot! Can't wait for the healing CC =)
Thanks alot man, can't say how much I appreciate your work!! :)
 
Tuanha,

Do you have a method we can donate to you? I was looking on the first page for a donation link but didn't see one. Maybe I am blind.
 
Status
Not open for further replies.
Back
Top