Originally Posted by
empty_skillz
anyone that can teach /help me add fading light debuff aswell as when to use heroic will during ultraxion? as i tend to afk that fight but i keep dying cause the rotation does not have a heroic will etc and fading light kills me ;<
This is not mine, Ishtro made it:
Code:
-- Fading Light
local FL = {105925, 109075, 110068, 110069, 110070, 110078, 110079, 110080}
for i,v in ipairs(FL) do
local _,_,_,_,_,_,flight = UnitDebuffID("player", v)
if flight
and flight - GetTime() < 2
then RunMacroText("/click ExtraActionButton1")
end
end
-- Hour of Twilight
local HoTcast,_,_,_,_,endtime = UnitCastingInfo("boss1")
local HoT = {109415, 106371, 109416, 109415, 109417}
for i,v in ipairs(HoT) do
if HoTcast == GetSpellInfo(v)
and endtime/1000 - GetTime() < 1
then RunMacroText("/click ExtraActionButton1")
end
end
-- Madness
local _,_,_,_,_,_,shrapnel = UnitDebuff("player","Shrapnel")
if shrapnel
and shrapnel - GetTime() < .75
then RunMacroText("/click ExtraActionButton1")
end