local mod = DBM:NewMod(664, "DBM-Party-MoP", 1, 313) local L = mod:GetLocalizedStrings() mod.statTypes = "normal,heroic,challenge,timewalker" mod:SetRevision("20220217050005") mod:SetCreatureID(59051, 59726, 58826)--59051 (Strife), 59726 (Anger), 58826 (Zao Sunseeker). This event has a random chance to be Zao (solo) or Anger and Strife (together) mod:SetEncounterID(1417) mod:RegisterCombat("combat") mod:RegisterEventsInCombat( "SPELL_AURA_APPLIED 113315 113309", "SPELL_AURA_APPLIED_DOSE 113315", "SPELL_CAST_SUCCESS 122714", "UNIT_DIED" ) mod:RegisterEvents( "CHAT_MSG_MONSTER_YELL" ) --Stuff that might be used with more data-- --4/6 12:57:22.825 UNIT_DISSIPATES,0x0000000000000000,nil,0x80000000,0x80000000,0xF130DEF800005B63,"Corrupted Scroll",0xa48,0x0 ------------------------------------------- local warnIntensity = mod:NewStackAnnounce(113315, 3) local warnUltimatePower = mod:NewTargetAnnounce(113309, 4) local specWarnIntensity = mod:NewSpecialWarning("SpecWarnIntensity", nil, nil, nil, 1, 2) local specWarnUltimatePower = mod:NewSpecialWarningTarget(113309, nil, nil, nil, 2, 2) local timerRP = mod:NewRPTimer(10) local timerUltimatePower = mod:NewTargetTimer(15, 113309, nil, nil, nil, 5) mod.vb.bossesDead = 0 function mod:OnCombatStart(delay) self.vb.bossesDead = 0 end function mod:SPELL_AURA_APPLIED(args) if args.spellId == 113315 then warnIntensity:Show(args.destName, args.amount or 1) elseif args.spellId == 113309 then specWarnUltimatePower:Show(args.destName) specWarnUltimatePower:Play("aesoon") timerUltimatePower:Start(args.destName) end end function mod:SPELL_CAST_SUCCESS(args) if args.spellId == 122714 then DBM:EndCombat(self)--Alternte win detection, UNIT_DIED not fire for 59051 (Strife), 59726 (Anger) end end function mod:SPELL_AURA_APPLIED_DOSE(args) if args.spellId == 113315 then if args.amount % 2 == 0 then--only warn every 2 if args.amount >= 6 then--Start point of special warnings subject to adjustment based on live tuning. specWarnIntensity:Show(args.spellName, args.destName, args.amount) specWarnIntensity:Play("targetchange") else warnIntensity:Show(args.destName, args.amount) end end end end function mod:UNIT_DIED(args) local cid = self:GetCIDFromGUID(args.destGUID) if cid == 59051 or cid == 59726 then--These 2 both have to die for fight to end self.vb.bossesDead = self.vb.bossesDead + 1 if self.vb.bossesDead == 2 then DBM:EndCombat(self) end elseif cid == 58826 then--This one is by himself so we don't need special rules DBM:EndCombat(self) end end --As the tale goes, the yaungol was traveling across the Kun'lai plains when suddenly he was ambushed by two strange creatures --"<31.42 19:12:48> [ENCOUNTER_START] ENCOUNTER_START#1417#Lorewalker Stonestep#2#5", -- [26] function mod:CHAT_MSG_MONSTER_YELL(msg, npc, _, _, target) if (msg == L.Event1 or msg:find(L.Event1)) then self:SendSync("LibraryRP1") end end function mod:OnSync(msg, targetname) if msg == "LibraryRP1" then timerRP:Start() end end