local mod = DBM:NewMod("DarkmasterGandling", "DBM-Party-Classic", 13) local L = mod:GetLocalizedStrings() mod:SetRevision("20191103015507") mod:SetCreatureID(1853) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_SUCCESS 17950" ) local warningShadowPortal = mod:NewSpellAnnounce(17950, 2) -- Target seems unreliable do local ShadowPortal = DBM:GetSpellInfo(17950) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 17950 then if args.spellName == ShadowPortal then warningShadowPortal:Show() end end end