@jadethread1: I will take a quick look at the 3.3.5a client. If it is possible for me to do this I will let you know.
Can you verify the build number for 3.3.5a... is it 12340?
@jadethread1: I will take a quick look at the 3.3.5a client. If it is possible for me to do this I will let you know.
Can you verify the build number for 3.3.5a... is it 12340?
Last edited by Xelper; 12-20-2011 at 08:34 PM.
I don't know if you should waste your time xelper. Even if you get the program to work, the profiles will then need to be adjusted for 3.3.5a considering there was a massive talent overhaul during 4.0.
Unless he is willing to do that himself.
Ok after spending all day and the last few days doing this I'm finally done rewriting my Retribution Paladin profile to use events to check for procs/buffs/debuffs/holy power/AOE-switch. I have the code there to be used for a PVP Trinket or Racial, PQ_HasLossOfControl is a boolean that will be TRUE if you are in combat and you lose control of your toon. So if you want to add the ability for pvp trinket or Every Man For Himself just put this in as the LUA code:
simple as that since PQ_HasLossOfControl is set by the event PLAYER_CONTROL_LOST. I use events to set the Single Target/AOE switch so once you load the profile you can press LEFT CTRL to switch between AOE/Single and a message will display in chat saying which you are currently on and you can switch it out of combat and even after you switch profiles.Code:If PQ_HasLossOfControl then return true end
Right now this is basically the same profile as before but with the event handling the checks, I wanted to get it out there for people to test/use. There are still changes I want to make to it like a change to when GoAK is used and maybe some optimization if possible. I believe I've reached either the limit of PQR speed-wise or just the limit regarding my cooldowns for my pally. There are still times when the rotation pauses but in this version it seems to only be after holy wrath which would mean i'm on cooldown but it can run for minutes at a time with a steady stream of abilities all overlaping each other as visible in PQRinterface. Eventually I might add a GUI frame to display some info and I want to make a pvp profile but either I need to learn how to ret pally pvp or find someone who is good at it (anyone?). Right now I'm going to shift gears and apply this same event princaple to bubu's frost DK profile (well DK in general, I want to use the events to handle the rune cooldowns)
Note: Don't trust the word of glory or flash of light abilities in the list, they are not in the one rotation i provided and i only tested the abilities in that rotation.
Here are the values/functions that you might need when adding or changing abilities in this profile.
PQ_Buffs[PQ_DivinePurpose].hasBuff
PQ_Buffs[PQ_AvengingWrath].hasBuff
PQ_Buffs[PQ_ArtOfWar].hasBuff
PQ_Buffs[PQ_SealOfTruth].hasBuff
PQ_Buffs[PQ_SealOfRight].hasBuff
PQ_Buffs[PQ_Inquisition].hasBuff
PQ_GetTimeLeftBuff(buff) Pass in the buff you want to check in PQ_ format, ie PQ_GetTimeLeftBuff(PQ_Inquisition) and will return time left in seconds
PQ_GetTargetHP() Returns targets health as a percentage
PQ_GetPlayerUP() Returns player's mana as a percentage
PQ_GetPlayerHP() Returns players HEALTH (not holy power) as a percentage
PQ_AOESwitchState True if AOE mode nil if single target
PQ_HolyPower Number of holy power you have 0,1,2 or 3
If you're a profile writer take a look at ---Loader--- (the pally handling code) and ---Event Loader--- (the event handling code) if anyone wants i'll post the two lua files that i developed them in (made it much easier to write and test). If you try using events or large functions i would advise getting the addon Wowlua and Event Tracker to test the code in game.
In case it's the first time using it the modifiers are
Left Ctrl : Tap to switch AOE/Single Target
Shift : Hold to pause
Left Alt : Press (might need to hold till casts) Hammer of Justice (Stun) on mouseover
Download the new profile here:
MEGAUPLOAD - The leading online storage and file delivery service
Last edited by fmagretto; 12-20-2011 at 10:42 PM.
Is their a way to change the ret rotation to work better with 2 piece tier 13?
I was testing on a dummy and with the even driven system, i think it would be better dps if exorcism or hammer of wrath was higher above crusader strike unless you had 2 holy power, and can you also make a 2p t13 edit so judgement is right after crusader if 1 hp unless exorcism or hammer of wrath.
edit: i have also noticed inquisition falls off quite a bit maybe have it start looking to refresh if at 5 secs or if 5 and a half seconds is possible. Having to refresh after it falls off is a dps loss.
For some reason every time you post it annoys me.....but thats not here or there....
First to respond to you and Pwnzor187: I will not craft a rotation around 2pc armor bonus at this point in time, it's improbable to assume everyone using it has the two piece a few weeks after 4.3 came out and I want the profile to be used by as many people as possible. Once i'm happy with the profile then maybe i'll make a copy of it with the tweaks for the 2pc tier13 bonus which brings me to my next point....
If you read my whole post this release is suppose to be a different version of the SAME rotation and SAME logic that i had release previously just with the buff/proc/debuff checks being handled by events and not polling API calls. The purpose of me releasing it now was to make sure the events are doing their just as well or better then the previous version. I released this version to make sure that it still WORKS for everyone still not to get a wishlist from them. As for the Inquisition comment I'll look into it but it should drop off at the same rate as the last one did since it uses the same logic....
Also don't judge something off 10 minutes on a training dummy...I quote EJ in sayingWhat you do on a training dummy is irrelevant, not only is your sample data far too small to rule out RNG, you're also missing lots of buffs/target debuffs that will change the way certain talents perform.
Last edited by expunge; 12-21-2011 at 03:06 AM. Reason: herp'd the reason.
Think this came from Bubba's Holy Pally profile. Was wondering if someone could add fear to this cleansing code.
local greencauldron = UnitDebuffID(PQR_CustomTarget, 9632
local bluecauldron = UnitDebuffID(PQR_CustomTarget, 96325)
local redcauldron = UnitDebuffID(PQR_CustomTarget, 96326)
local blackout10 = UnitDebuffID(PQR_CustomTarget, 92876)
local blackout25 = UnitDebuffID(PQR_CustomTarget, 9287
local unstableaf = UnitDebuffID(PQR_CustomTarget, 3010
local VT = UnitDebuffID(PQR_CustomTarget, 34941)
if greencauldron or bluecauldron or redcauldron or blackout10 or blackout25 or unstableaf or VT then
return false
else
for i=1,40 do
local _,_,_,count,ismagic,duration = UnitDebuff(PQR_CustomTarget,i)
if ismagic == "Magic" or ismagic == "Disease" or ismagic == "Poison" then
if duration > 6 and count ~= 1 then
return true
end
end
end
end
very nice stuff guys , just tested this , it works great but with a few tweaks ...
im talking about Bubba's DK FROST rotation .... what i have changed is that i edited the Frost Strike runic power detection , be default it was set > 60 RP and that was a waste of 1 x FS maybe 2 in some cases and some down time too ... i just edited that to > 32 RP ( the cost of a FS ) , and moved the last Howling Blast up BEFORE the last Frost Strike , so 1 extra HB along the way
all in all great job , thank you a lot
Playing around with the Holy Paladin profile to try and improve it (Mana drain on Spine and madness of deathwing is crazy, no not LFR)
The profile currently does not use Light of Dawn
Does anyone have the code that will work for this?
*EDIT*
Would it be something like this
Code:<Ability> <Name>Light of Dawn</Name> <Default>false</Default> <SpellID>85222</SpellID> <Lua> local myHolyPower = UnitPower(&quot;player&quot;, 9) local myMana = 100 * UnitPower(&quot;player&quot;) / UnitPowerMax(&quot;player&quot;) if lowhpmembers &gt;= 3 and myMana &gt;10 and myHolyPower == 2 then return true end </Lua> <RecastDelay>100</RecastDelay> <Target>Player</Target> </Ability>
Last edited by Lofty; 12-21-2011 at 08:20 AM.
since last 2 days, pqr keep disconnect me, anyone has the same issue?
yeah i have the same problem with DC ... but it seems to be blizzards fault ... lots of people getting random DC
---------- Post added at 06:41 PM ---------- Previous post was at 05:00 PM ----------
im gonna revise that ... the DC's are caused by this program ... i got 13-14 DCs during 4 LFR bosses ... on DW i closed it after a wipe during witch i got 4 DCs ... used Lazybot Rotator ... and no DC's ... so pls dev's fix it ... it does an awesome job