Код:
acd=CreateFrame('frame','ACD',UIParent)
acd:SetPoint("CENTER",0,-80)
acd:SetSize(32,32)
acd.t=acd:CreateFontString()
acd.t:SetPoint("CENTER")
acd.t:SetFont("Fonts\\FRIZQT__.TTF", 28, "OUTLINE")
acd.t:SetShadowOffset(1,-1)
acd:SetScript('OnEvent',function(s,e,a)
    if a:find("Fifteen seconds until the Arena battle begins!") or a:find("15 секунд до начала боя на арене!") then
        t=16
        s:SetScript('OnUpdate',function(s,e)
            t=t-e
            acd.t:SetText(math.floor(t))
            if t <= 1 then
                s:SetScript('OnUpdate',nil)
                acd.t:SetText("")
            end
        end)
    end
end)
acd:RegisterEvent('CHAT_MSG_BG_SYSTEM_NEUTRAL')
ру/ен клиент