Originally Posted by
Kinkeh
Kink's Panda Frost [Mists of Pandaria[BETA] - Frost DK Rotation]
Hey guys

, I'm releasing this profile as a "place holder" until a more advanced and set rotation is released. The current rotation this profile uses is based off the current rotation all the sims are using to test 2H/DW frost in the beta. This will be good for leveling your DK in the beta and maybe editing it to your liking for raid testing.
Features:
--
This profile is to be used with the "Runic Empowerment" Talent, also the "Plague Leech" Talent! Do not glyph for "Outbreak". Frost is also now played in Frost Presence.
-- Up to date beta 2H rotation.
-- Up to date beta DW rotation (2H is a lot better then DW at the moment).
-- Utilizes Plague Leech with diseases.
Bugs:
There's a couple bugs right now that I'm trying to work out, such as Soul Reaper, even when checked if the target is dead/is a corpse & if the target is at the required health for the proper execute phase, it will continue to attempt to cast the spell resulting in multiple LUA errors apon death of the target. thus why it's left out of the rotation until I can get it working.
For when the spell keeps trying to cast, even if the target is dead and so forth, all that good stuff, do what I do in my Druid HonorBuddy PQRotation Profile.
Code:
local hasTarget = UnitExists("Target")
local isDead = UnitIsDead("Target")
local fbKnown = IsSpellKnown(22568)
if hasTarget and not isDead and fbKnown then
-- code goes here --
end
Where fbKnown can be changed to whatever to see if the certain spell is actually known and in spell book. You could always use the built in one, but I seem to have a few problems every so often from it. Just change the spellID and fbKnown to srKnown or whatever you want.