4.5 Released:
Changelog:
General
- Added monk 1-10 rotation for those people that don't want to have to do anything from the very start.
Brewmaster
- True leveling profile from 10-90 (Added check for chi usage pre-34, tested on a new monk I created. Please provide feedback if not working)
Former PQR Developer
Hey Kuukuu i really like your profile but i was wondering is there any way to make it so purifying brew is castes when ever you hit moderate stagger? ive noticed it waits a lil while and i end up taking unneeded damage, i think thats the only thing i noticed any ways great profiles and ill catch ya laters
Kuukuu is it possible to make the WW profile time its use of TeB with RoRo procs?
Awesome profile btw
kuukuu, if i add chi wave in rotation as ww, where i should put it so it will be use properly? i mean to keep proper rotation etc.?
Last edited by Goldstash; 06-19-2013 at 09:03 AM.
Holy responses batman, I only got one email saying people had said something here....
You can change it if you want. It's set up the way it is right now because normally a moderate stagger doesn't do enough damage to really matter to a healer and it provides you with more vengeance and, because of that, more attack power/higher dps. To have it clear heavy and moderate immediately, go into the Purify Brew ability and change:
toCode:if UnitDebuffID("player", 124274) and (expires > 4 or UnitPower("player",12) > 3) then CastSpellByName(GetSpellInfo(119582),nil) return true end
It is, but I do not have the RoR trinket to test it.Code:if UnitDebuffID("player", 124274) then CastSpellByName(GetSpellInfo(119582),nil) return true end
Apparently the last version I uploaded had Chi Wave and Expel Harm out of the rotation. I fixed it now but if you want to add it yourself, Expel Harm should be right after Jab, then Chi Wave after that. Also add Chi Wave filler just above the Tier 4 at the bottom to get the complete rotation.
Former PQR Developer
The Brewmaster one has been working well for me leveling in dungeons.
Is there a way to make Guard get cast every time it comes off CD without holding down a modifier key?
Also, is there a way I can add Zen Sphere to be auto cast? (Like every 16 seconds? so it's cast as soon as the current one expires.)
no need to do it myself now
great profiles
In anything outside a raid, Guard should be cast every time you're below 75% health. If you want to change it, you would just change the line in Guard that says:
to something else. If you wanted it on CD, then remove the UnitHealth check completely so it says:Code:if not IsInRaid() and (100*(UnitHealth("player")/UnitHealthMax("player"))) < 75
I also didn't add Zen Sphere support because it is a terrible talent compared to the other two but if you want to add it then add this to the Tier 2 code:Code:if not IsInRaid() then CastSpellByName(GetSpellInfo(115295)) return true end
and it'll cast it on CD.Code:if PQR_SpellAvailable(124081) and IsSpellKnown(124081) and UnitAffectingCombat("player") then CastSpellByName(GetSpellInfo(124081)) return true end
Former PQR Developer
I would suggest Chi Wave since it's made of pure awesome. XD
Former PQR Developer
Hey, I caught your response on Rubim's thread and thought it would be more appropriate to respond in this thread since we're talking about your profiles.
I can't seem to find any in-game configuration settings to change hotkeys for certain abilities/modes/etc. I think that's one of the major hangups I have with your BM profile. I wasn't saying in the other thread that every other profile than Rubim's is horrible, I was just pointing out that I keep using his in the end (especially for tanking our guild's normal ToT raids).
If there were some in-game configurable options, such as using PQI (or if I could be pointed out to whatever config settings I'm missing) then I might be able to give your profile a good test.
I would be rather amused if you were calling my profile bad since most of his was originally taken from mine since I was the only one making a BM profile for the longest time. Haha. There aren't any configurations currently since it was mainly developed for my own personal use but I plan on adding something eventually when I have time again. It's easy enough to edit keys though if you can read lua at all. *shrug* S'all good though.
Former PQR Developer
Is it possible to modify the Windwalker profile so Legacy of the Emperor & Legacy of the White Tiger are always active? I need to cast it myself now.![]()
4.6 Released:
Changelog:
General
- Added auto buff ability, should check your party/raid members and if someone is missing stats or crit, it will buff the group
Brewmaster
- Added auto stance check, will put you in Sturdy Ox if you are in Fierce Tiger
Windwalker
- Added support for RoR trinket as well as modified the Tiger Eye Brew usage a bit (untested, please provide feedback)
EDIT: Also, though I don't have time at the moment to do it, if people want to tell me what they'd like to see in a PQI implementation, that would be great. PQI will be optional when I do add it since I know some people are not overly fond of having an addon running that basically broadcasts you're using PQR.
Last edited by kuukuu; 06-23-2013 at 04:25 PM.
Former PQR Developer