Author: Omega
Date: Sun Jul 18 06:18:50 CEST 2010
Revision: 4354
Log:

#Ruby/Halion: special warning for twilight cutter now on by default, but changed to ONLY show if you're in twilight realm.
#Ruby/Halion: Icons changed in last revision but i forgot to note it. skull is now set on fire debuff and x on shadow. since x was hard to see with meteor on ground.

Updated
trunk/DBM-ChamberOfAspects/Ruby/Halion.lua

trunk/DBM-ChamberOfAspects/Ruby/Halion.lua
Action: modified
Old revision: 4353
Old date: 2010-07-18 02:13:57 UTC

@@ -37,7 +37,7 @@
local specWarnShadowConsumption = mod:NewSpecialWarningRun(74792)
local specWarnFieryConsumption = mod:NewSpecialWarningRun(74562)
local specWarnMeteorStrike = mod:NewSpecialWarningMove(75952)
-local specWarnTwilightCutter = mod:NewSpecialWarningSpell(77844, false)
+local specWarnTwilightCutter = mod:NewSpecialWarningSpell(77844)

local timerShadowConsumptionCD = mod:NewNextTimer(25, 74792)
local timerFieryConsumptionCD = mod:NewNextTimer(25, 74562)
@@ -288,10 +288,10 @@

function mod:CHAT_MSG_RAID_BOSS_EMOTE(msg)
if msg:find(L.twilightcutter) then
+ specWarnTwilightCutter:Schedule(5)
if not self.Options.AnnounceAlternatePhase then
warningTwilightCutter:Show()
timerTwilightCutterCast:Start()
- specWarnTwilightCutter:Schedule(5)
timerTwilightCutter:Schedule(5)--Delay it since it happens 5 seconds after the emote
timerTwilightCutterCD:Schedule(15)
end
@@ -306,7 +306,6 @@
if self.Options.AnnounceAlternatePhase then
warningTwilightCutter:Show()
timerTwilightCutterCast:Start()
- specWarnTwilightCutter:Schedule(5)
timerTwilightCutter:Schedule(5)--Delay it since it happens 5 seconds after the emote
timerTwilightCutterCD:Schedule(15)
end