local mod = DBM:NewMod(748, "DBM-Party-Classic", 18, 239) local L = mod:GetLocalizedStrings() mod:SetRevision("20190922231615") mod:SetCreatureID(7023) mod:SetEncounterID(1887) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_SUCCESS 10072", "SPELL_AURA_APPLIED 9941" ) local warningReflection = mod:NewTargetNoFilterAnnounce(9941, 2) local warningSplinteredObsidian = mod:NewSpellAnnounce(10072, 2) do local SplinteredObsidian = DBM:GetSpellInfo(10072) function mod:SPELL_CAST_SUCCESS(args) --if args.spellId == 10072 and self:AntiSpam(3, 1) then if args.spellName == SplinteredObsidian and self:AntiSpam(3, 1) then warningSplinteredObsidian:Show() end end end do local Reflection = DBM:GetSpellInfo(9941) function mod:SPELL_AURA_APPLIED(args) --if args.spellId == 9941 and self:AntiSpam(3, args.destName) then if args.spellName == Reflection and self:AntiSpam(3, args.destName) then warningReflection:Show(args.destName) end end end