@fluxflux: Are you absolutely sure you upgraded to the 5.4 version? I tested it in LFR myself last night and I had absolutely no problems with either the standard or advanced rotation. Spells and abilities was executed in the order and fashion they should be under manual circumstances. Did you restart WoW/PQR/reloaded your UI before starting PQR again?
Edit: You probably haven't re-tweaked the level offsets on some abilities. Archangel and Shadowfiend only fires on mobs 3+ levels than you, and/or bosses.
Last edited by Kinky; 03-22-2012 at 05:32 AM.
@Xelper. It seems that the function PQR_NotBehindTarget() is not working properly.
When standing and dpsing the post in orgrimmar i have this for my Shred and the last ability is mangle. I would expect that i do not mangle but rather just use Shred. But looking at my combatlog i can alot of mangles slipping through.if PQR_NotBehindTarget() == false then
return true
end
In my profile i actually have to remove the check and the mangle functionality in order not to loose dps.
@Gabbz - Currently, aside from the Bleed debuff check, this is how I handle Mangle/Shred:
PQR_functionAddComboDruid.lua
Uncomment the Debug lines if you want to see what it's trying to do. This is honestly just Xelper's code from the first page chucked into a function, so credit to him on that function, really. I'll probably change this at some point, instead returning a DoShred or DoMangle so I can have them in their own abilities and use the SpellID properly.Code:function PQR_AddCombo(unit) if PQR_NotBehindTarget() then --PQR_DebugP("In front, casting Mangle") CastSpellByID(33876,unit) end --PQR_DebugP("Behind, casting Shred") CastSpellByID(5221,unit) end
Ability - AddCombo:
CPonTarget and Energy are globals set elsewhere, and I used Shred to calculate the energy cost, even though Mangle is slightly cheaper, this is just what I've been using. Still a LOT of work to be done, but I keep having stuff come up... hopefully I can resume work this afternoon.Code:local ShredCost = select(4,GetSpellInfo(5221)) if PQR_BleedDebuff("target") and CPonTarget < 5 and Energy >= ShredCost then PQR_AddCombo("target") return true end
Last edited by Deva; 03-22-2012 at 09:59 AM.
PQR (v2.0.7) Released
Run PQRUpdater.exe from your current PQR directory to download. If you do not have PQRUpdater.exe download it here.
-Added a "Skip Unknown" option for individual abilities. This value will default to true. If the spell is unknown it will be skipped. Requires a spell ID. This should allow more profiles to also be used as leveling profiles.
-Fixed (or should have) icon transparency issue on Windows XP.
Last edited by Xelper; 03-22-2012 at 10:30 AM.
This is to Crystal, Kick and Sheron. I'm willing to donate money via PayPal to you guys to keep working on your rotations. PM me and we can work out the details. Hunter rotations of course! LOL.
Hy there.
I think EFF updated Ash´s tree profile...(btw. is EFF Ash?). Make a forum search for user EFF.
FAT EDIT!: Dont search for Eff...^^ take this link^^
http://www.ownedcore.com/forums/worl...ml#post2156781 ([BETA] PQRotation - an automated ability priority queue.)
Last edited by Hoblerhans; 03-22-2012 at 11:28 AM.