Originally Posted by
ignotus
I absolutely love this profile. It made me get my previously retired rogue back out and do raids. It's amazing.
My question though: I have been going through the abilites and helpfile, but I can't seem to find a recuperate button/function. Would be nice to toggle that for solo grinding (like the Timeless Isle).
Am I just blind/stupid or isn't that in the profile? Should I get a PVP profile for that?
Its codded into Assassination : Int spell
Code:
-- Recuperate / Slice and Dice
--if not UnitAffectingCombat("player") then return end
if UnitIsUnit("target", "focus") then return end
-- Recupe if not full health
local s, _, _, _, _, _, sexpire = UnitBuffID("player", 73651)
sexpire = (sexpire ~= nil) and sexpire or 0
if combopoints > 0 and (redirect ~= 0 or combopoints < 5) and (sexpire - GetTime()) < 6 and (UnitHealth("player") / UnitHealthMax("player")) < 1 then
CastSpellByID(73651)
return
end
If im not mistaken, this will use any remaining CPs after combat to cast recup on you if youre not maxed.