NVM, something might be wrong on my end.
NVM, something might be wrong on my end.
Last edited by giranimo; 02-24-2012 at 12:14 PM.
Just gotten done with some major overhauling of my Resto Druid profile, changes include:
- Added DEBUG code from Valma (toggle with /pqd)
- Fixed decursing, uses current custom target or mouseover (/decurse to enable/disable)
- Moved all healing percentages to functions for easy editing
- Other general fixes, improvements and boss code added
Now since a few people have found they have mana issues, below is an altered list of healing percentages (just copy and paste over the current ones in functions). While the profile is aimed at high-end gear, these values should really help keep the mana usage down and make things more efficient, but obviously your healing throughput is lowered!
Download is available here: RestoDruid_Eff_Profile.rarCode:SpellSwiftmend = 90 SpellRejuv = 90 SpellNourish = 80 SpellRegrowth = 40 SpellHealingTouch = 45 SpellNaturesSwiftness = 40 SpellWildGrowth = 4
And you can find more updates/changes on the main post here: http://www.ownedcore.com/forums/worl...ml#post2156781 ([BETA] PQRotation - an automated ability priority queue.)
As usual let me know if you run into any issues or want something added!
Thanks for this!!
I checked FW == nil but it should be FW ~= nil!
Fixed Version
/////
Edit, now it's fixed : http://dl.dropbox.com/u/60199715/%5B...e_24_02_12.rar
Last edited by [Blinded]; 02-24-2012 at 12:33 PM.
(don't post things I post to Patreon.)
Looks decent so far. IMO leave Survival Instincts and Frenzied Regen as "Manual" buttons. there both off the global, so hitting them wouldnt disrupt the rotation.
When you start working Beserk into the profile you'll want to make it check for the following for optimal useage
1: Lacerate is up with 3 stacks
2: Pulverize is up with greater than 10 seconds left.
When Pulverive is about to drop off (or when the 3 stack of Lacerate is about to drop off) Pulverize. this allows you to keep the +6% improved crit for the full duration of Berk.
a Decent, basic bear AOE rotation is this:
Swipe, Thrash, Swipe, (filler. Mangle, FFF, Demo Roar, Lacerate)
my AOE macro basicly spams Thrash, Swipe, Demo Roar, Swipe (the reason i put thrash first is i use the AOE key for my singletarget thrash application)
Decent so far. Add a "Bearcat" portion too (Mangle/shred (dependant on facing) to 4 CP, TF, Rake, Rip, Mangle/shred to 2 CP, Savage Roar, Mangle/shred to 5 and FB, Refresh Rake and rip before they fall off.
A guide on Bearcat can be located here.
Dragon Soul Bearcat Guide
Last edited by TehVoyager; 02-24-2012 at 12:56 PM.
(don't post things I post to Patreon.)
@Blinded
the sub rotation don`t start! sometimes they start after 1minute! or i restart pqr one or two times
BossQwerty
I have not gotten to get in a raid to test your profiles 5.2 or 5.3 as I was needed on my Healer this week.
But I took a lil time today and did 3, 5 Min tests. --- This is for your TG profiles
These are on a 390 ilvl fury warrior, do not have 4p bonus yet. Wielding 1 Gunthak and 1 Chieftan axe
1 with Boss 5.2
1 with Boss 5.3 Beta
1 with XM's Fury War XMF
Here are the results, some of the numbers of course are skewed by luck as while watching I got alot more Guthak Tentacle spawns during the 5.2 test than the 5.3 And even more during the XMF test
BOSS 5.2 - TG
20398 DPS
Pet did 9%
BOSS 5.3 - TG Beta
19754 DPS
pet did 5%
XM Fury Warrior
21735 DPS
Pet did 15%
I look forward to using them some more, and will probably test either 5.2 or 5.3 beta on LFR Ultraxion and such this weekend.
@Blinded
Awsome work on Combat, pulling 29k on dummy
I think is better use hold ALT to pause rotation, and resume when you "let it go". We already have a stop rotation keybind from PQR itself
Got this code from Xaos Assassination profile, it pauses when you hold ALT and Resume when you let it go. Not sure if its the right part of the code, but i think so.
Code:<Name>-- defensive spells --</Name><Default>false</Default><SpellID>0</SpellID><Actions/><Lua>if modtime == nil then modtime = 0 end if IsRightControlKeyDown() and GetTime() - modtime > 1 then modtime = GetTime() if BSdisabled then BSdisabled = nil print("Backstab: \124cFF15E61CEnabled") else BSdisabled = 1 print("Backstab: \124cFFE61515Disabled") end end local gougetimer = select(7,UnitDebuffID("target",1776)) if IsAltKeyDown() or IsMounted() or SpellIsTargeting() or UnitBuffID("player",1856) or UnitBuffID("player",80169) or (gougetimer and gougetimer - GetTime() > 0.2) then return true end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target><CancelChannel>False</CancelChannel><LuaBefore/><LuaAfter/>
Also, add some delay if possible in right CTRL to disable/enable rotation. The profile that i mentioned before have that too, its nice because if you press the key for too long (like 0.2 seconds) it ll not toogle mutiple times.
Last edited by byterj; 02-24-2012 at 01:54 PM.