by euronmisc » Sun Jan 24, 2016 2:09 pm
/script if buffed("Bear Form") then cast("Frenzied Regeneration") else cast("Entangling Roots") end
Should work, be sure to change bear form to dire bear form if you use that. Supermacro required.
RE: innervating and combat rezzing. Aftercast is an amazing addon that will allow you to make macros that don't spam unless the spell actually goes off. So you can spam your innervate button without being scared that you will flood the chat with your message.
/script SpellStopCasting()
/aftercast +done /run SendChatMessage("Innervate on %n","CHANNEL",nil,"5")
/cast Innervate
Puts a message in channel 5, our healer channel.
/script SpellStopCasting()
/aftercast +done /run SendChatMessage("Rebirth on %n","CHANNEL",nil,"5") SendChatMessage("Rebirth on %n","RAID")
/cast Rebirth
A little more complicated, puts a message in the healer and raid channel notifying who you combat ressed. Both macros are completely spammable if you get aftercast so no need to worry about spamming the chat.