Aww someone fix the feral druid dps macro it doesn't work after the tuesday maintenance I need it to push out my 7k dps in raids if not I'm 4-5k tops. Someone fix it so it works properly I don't know enough LUA to make it bypass the new filters.
Code:
/run if UnitBuff("player", "Clearcasting") then CastSpellByName("Shred") end
/run local _,d,_ = GetSpellCooldown("Tiger's Fury") if (d == 0) and UnitPower("Player") < 30 then CastSpellByName("Tiger's Fury") end
/run p=GetComboPoints("player","target");if not UnitBuff("player", "Savage Roar") and p>0 then RunMacroText("/cast Savage Roar") end
/run p=GetComboPoints("player","target");if not UnitDebuff("target", "Rip",unitCaster~="player") and p>4 then RunMacroText("/cast Rip") end
/run p=GetComboPoints("player","target");if p>4 then RunMacroText("/cast Ferocious Bite") end
/run if not UnitDebuff("target", "Mangle",unitCaster~="player") then CastSpellByName("Mangle") end
/run if not UnitDebuff("target", "Rake",unitCaster~="player") then CastSpellByName("Rake") end
/run local _,d,_ = GetSpellCooldown("Shred") if (d == 0) then CastSpellByName("Shred") end