local mod = DBM:NewMod(534, "DBM-Party-BC", 8, 250) local L = mod:GetLocalizedStrings() mod.statTypes = "normal,heroic,timewalker" mod:SetRevision("20200912133955") mod:SetCreatureID(18341) mod:SetEncounterID(1900) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_CAST_START 32358 38759" ) local specWarnShell = mod:NewSpecialWarningReflect(32358, "SpellCaster", nil, 2, 1, 2)--Casters should stop attacking, melee, doesn't do enough damage to them for them to stop local timerShell = mod:NewBuffActiveTimer(7, 32358, nil, nil, nil, 5) function mod:SPELL_CAST_START(args) if args:IsSpellID(32358, 38759) then specWarnShell:Show(args.sourceName) specWarnShell:Play("stopattack") timerShell:Start() end end