Сейчас только внимание обратил что в комбат логе нет события каста http://cata.wowroad.info/?spell=103571 боссом.
Следовательно у нас в ДБМ'е не работает это:
Код:
function mod:UNIT_SPELLCAST_SUCCEEDED(uId, _, _, _, spellId)
if uId ~= "boss1" then return end--Anti spam to ignore all other args (like target/focus/mouseover)
--Void of the unmaking cast, do not use spellname because we want to ignore events using spellid 103627 which fires when the sphere dispurses on the boss.
--It looks this event doesn't fire in raid finder. It seems to still fire in normal and heroic modes.
if spellId == 103571 and not voidWarned then
if timerPsychicDrainCD:GetTime() == 0 then--Just a hack to prevent this from overriding first timer on pull, which is only drain that doesn't follow this rule
timerPsychicDrainCD:Start(8.5)
end
timerVoidofUnmakingCD:Start()
voidWarned = true
warnVoidofUnmaking:Show()
specWarnVoidofUnmaking:Show()
end
Следовательно в ДБМ'е не показывается:
Таймер восстановления http://cata.wowroad.info/?spell=104322
Таймер, предупреждение и спец-предупреждение для http://cata.wowroad.info/?spell=103571
Да, можно в ДБМ'е сделать привязку к рейдовому сообщению, которое появляется при касте сферы.
Но это не тру, т.к. это для ЛФР, как я понял по строкам кода ДБМ'а, в ЛФР каст в комбат логе не отображается.
--Update--
Еще у нас вместо
(рейдовое сообщение) должно быть
(Эмоцмя босса).
Я так понимаю таким образом у нас пофиксили спам в пм от боссов.