Ok, soon I will be releasing my Frost Death Knight Profile. I am an experienced Hard Mode Top 100 World Progression Death Knight and I have decided to code my knowledge behind the advanced mechanics to optimal DPS output on Death Knights in a raid setting.
The following is an idea of what to expect:
- Given that I have yet to find a DK Profile that properly utilizes Frost Strike for Runic Empowerment, I have optimised this ability for this.
- Given that Howling Blast is being used under the wrong circumstances in every profile I have seen, I have optimised this abilities usage for optimal DPS.
- Raise Dead has been optimised with more situations in which this ability should be used.
- Considering the DPS increase given by using HoW in combat downtime for additional RP I have coded this to be used in this setting.
- ERW has been coded for use appropriately to gain extra DPS and less in-combat downtime.
More details will be laid out in the final release post.
All the testing i have done with this profile has ranked me in the top 150 on WoL for 5 different fights in DS @ an equipped 384 ilvl. However, I am still not maximizing the full potential of my character because I am having a few difficulties in coding some of the more complex scenarios for ability priority. So I have a few questions that i hope our community can help me with.
To start take a look at the following code:
Code:
local _,_,DeathRune1 = GetRuneCooldown(1)
local _,_,DeathRune2 = GetRuneCooldown(2)
local _,_,UnholyRune1 = GetRuneCooldown(3)
local _,_,UnholyRune2 = GetRuneCooldown(4)
local _,_,FrostRune1 = GetRuneCooldown(5)
local _,_,FrostRune3 = GetRuneCooldown(6)
First, what exactly does _,_, specify here?
Second, are the local defines for the runes correct here? I know that ingame the order on the bar is DR, FR, UR. Just wondering if this example I found under another profile is correct or no and if not what is the proper setup?
I may have more questions to follow depending on the responses I get. However, if there is an advanced reference guide for this program outside of the Wiki which doesn't tell me much, please share it.