I am requesting that someone write a plugin that when turned into the Mutated Construct to interrupt the boss cast using Amber Strike and then interrupt Amber Explosion on yourself when casted. This would help tremendously.
So you can't do it yourself but it still "should be fairly easy"... You sound like a Project Managers...
You're right. I am around project managers all day long and I guess I should have chosen my words a little more carefully! I made an assumption on that statement. Edited that statement out for obvious reasons...
--Amber Shaper if UnitExists("boss1") then local npcID = tonumber(UnitGUID("boss1"):sub(6,10), 16) if npcID == 62511 then --Amber Shaper local reshapeLife = UnitDebuffID("player", 122370) if reshapeLife then --Player is mind controlled. local playerCasting = UnitCastingInfo("player") local amberExplosion = GetSpellInfo(122402) local struggleForControl = GetSpellInfo(122395) local amberStrike = GetSpellInfo(122389) local breakFree = GetSpellInfo(123060) local playerWisdom = UnitPower("player", 10) --"Wisdom" power. if playerWisdom <= 8 then RunMacroText("/cast "..breakFree) end if UnitExists("boss2") then --62711 local npcID = tonumber(UnitGUID("boss2"):sub(6,10), 16) if npcID == 62711 then local bossCasting = UnitCastingInfo("boss2") if bossCasting == amberExplosion then --boss is casting. RunMacroText("/cast "..amberStrike) else if playerCasting == amberExplosion then RunMacroText("/cast "..struggleForControl) end end end else if playerCasting == amberExplosion then RunMacroText("/cast "..struggleForControl) end end end end end
Open a text editor, copy and paste what Valve wrote and save it as "Yourawesomepluginname.cs" and put it into a folder with the same name like /plugins/yourawesomepluginname You could try that
not trying to necro a month old thread, but does the script that is provided a couple posts down actually work?