Read this thread sandman:
Festerblight in 5.3: Numbers and analysis - Forums - World of Warcraft
With the changes, mathing everything out, FB is dead.
Read this thread sandman:
Festerblight in 5.3: Numbers and analysis - Forums - World of Warcraft
With the changes, mathing everything out, FB is dead.
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
If you want it, you can macro it and put on any place on your action bar, sample macro:
![]()
Last edited by Hastings7elb; 05-07-2013 at 08:54 PM.
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Is there any way to use the dw profile with blood tap.
It doesn't work for me.
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Hmm, I reinstalled PQR and downloaded the profiles from Rubim again, but after installation the minimap button to change some settings is gone...what did I do? :/
Edit: Im stupid /nova
Last edited by arrac; 05-09-2013 at 09:55 AM.
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
I talked to rubim tonight on skype with tge proposed changes i wanted to add to the rotation as a whole like selectable hotkeys for dnd, AMZ and pestilence. He or I will let yall know when it goes live as right now he is debugging and fixxing the code i made.
Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Delete this post...
Last edited by arrac; 05-10-2013 at 04:09 PM.
Let me first begin by saying these DeathKnight profiles are top-notch and I am very impressed!
I am so very sorry if this has been explained in a wiki or FAQ before, my preliminary search results did not turn up any information,
I was curious why the PQR rotation cancels out during certain vehicle/boss mechanics, for instance on Magmaw when I get lifted in the air, I am unable to use PQR to attack the head during that phase, or another example being on the Isle of Thunder dailies during the quests that fly you around on a mount while you aerial combat another mob using your own abilities, similar to the rare dragon mount in Deepholm, while mounted I am unable to attack using PQR and must resort to manual attacks in scenarios like these and several others.
It just stops the rotation completely or only casts certain spells, greatly hindering performance.
Any help is greatly appreciated, thank you.
Edit: I forgot to mention that I am also not certain if it is merely the profile to blame, but for reference, I am running [Rubim] Blood DK profile
Your are refering to an old boss that had targetting issues in the past. Hell these profiles were not even around when magmaw was even relevent content. Woth tgat being said i doubt rubim or me will even devote time to fix this issue on really old and outdated bosses. Sorry
Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Firstly, great UH DK Profile. Works brilliantly! Managed a couple of top 10 ranks with it!
I've been trying to code in a way to only reapply diseases when you have >8 stacks of the mighty buff (from the Feather), but I can't seem to get it to work.
What I've tried is adding the buff to the spell list as:
MightyBuff,_,_,MightyBuffCount = UnitBuffID("player",138760)
if not MightyBuff
then
MightyBuffCount = 0
end
And then modifying the Plague Strike code to:
if BPtimer > 0
and ActualDotDmg() > DotDmg
and TargetValidation("target",PlagueStrike)
and (GetTime() - CombatTimer) > 4
and MightyBuff > 8
then
CastSpell(PlagueStrike)
end
However it still casts plague strike at successive stacks. Any help would be greatly appreciated.
Because you have it coded to cast at or above 8 stacks. It stacks to 10, so it will continue to cast PS at 8, 9 and 10 stacks.
I have mine coded to cast at 9-10, for example:
if BPtimer > 0
and ActualDotDmg() > DotDmg
and TargetValidation("target",PlagueStrike)
and (GetTime() - CombatTimer) > 4
and (MightyBuff == 9
or MightyBuff == 10)
then
CastSpell(PlagueStrike)
end
An alternative would be to have it only cast at 10 stacks but you run the risk of not having a UR available during the GCD that you hit the 10th stack which is why I use 9-10.
Last edited by Decaed; 05-14-2013 at 03:34 AM.