anyone know where a good updated balance druid profile might be at? or if there is a good one?
anyone know where a good updated balance druid profile might be at? or if there is a good one?
Xelper,
I have a strange bug.
I'm useing PRQ on Win 32 and 64(WOW is 32 on both PC's).
And from some point,PRQ have stared to freez.The launch process is fine.But when I'm trying to activate the rotation,PRW freez and nothing happend,then unfreezing and nothing happeing=)
What could it be?
Blinded, you don't happen to play another class besides a rogue do you ??!
Here's one profile whom I dont know who's it is, and Gabbz Moonkin-profile. Personally I use the first of them with good result. It's mushroom-handling doesnt work so I stop the rotation and put them up manually and detonate when mushrooms are needed.
I'm currently leveling a druid, but im not sure of his role when he reaches 85.
But first i need a documentation of these damn PQR functions![]()
Blinded, it would be absolutely awesome if you decided to make a balance-profile, particularly one with working mushroom placement+detonation+starfall on shiftkeydown. Boomkin is really fun, you just dot everything up and blow it to pieces. With all dotting and mushroom-aoe I did 27k on LFR-spine with only 383ilvl and no setbonuses. But then again its those bosses Boomkin really shines through on, with alot of targets to lit up ^^ I hope Xelper or any other dev get back to you about the PQR-functions, when theyre not busy with D3 or the fussball-tourney.
I just uploaded the latest MOP offsets. Run the updater.
Got a question i looked at PQR Interrupt menu and i got sandbox, arch,herb, and alot more stuff what do they do?![]()
About that Balance-profile I tried I couldnt tell who made, it was Firepongs. And its really good, setting mushrooms and detonating them works as intended now after testing it. Doing insane DPS with all the dots![]()
I am looking for Savage Roar to NEVER be used if Rip is not on my target for certain fights. How would this be coded? Currently I am using Gabbz's Savage Roar code intermingled into Firekitteh, which is
What/where would I need to add into this so this is the case? I notice off of every pull, and every target switch that Savage Roar always takes priority regardless of whether it is at the bottom on the priority listing or not. Since I am reforged for max mastery, the loss of Rip uptime is much more detrimental than SR losing a few seconds while Rip is cast first.Code:local SavageRoar, _, _, _, _, _, SavageRoarEndTime = UnitBuffID("player", 62071) local Rip, _, _, _, _, _, ripEndTime = UnitDebuffID("target", 1079, "PLAYER") local playerCP = GetComboPoints("player", "target") if SavageRoar then local SavageRoarFinishTime = SavageRoarEndTime - GetTime() if SavageRoarFinishTime < 2 then return true end if Rip then local ripFinishTime = ripEndTime - GetTime() if playerCP == 5 and ripFinishTime < 12 then if SavageRoarFinishTime < 6 and SavageRoarFinishTime < ripFinishTime then return true end end end return false else if playerCP > 0 then return true end end