A few things...
Unless one of those doesn't trigger the global cooldown, you won't be able to use them simultaneously. One cooldown trigger per macro.
Second thing is that /cast and /use should require SuperMacro or something similar. In vanilla WoW, the macro API was much different, and uses CastSpellByName("Beastial Wrath") and UseInventoryItem(14). If you have SuperMacro, then ignore this "issue".
The last thing is, sadly, there is no #showtooltip. This was also added later when they changed the way macros were done (can't remember if it was TBC or a little later they added #showtooltip). The closest things you can get are maybe SuperMacros option to replace buttons, which is just going to give you the button for the first thing it finds (Beastial Wrath), and you can add this line to the beginning of the macro:
- Code: Select all
/run if 1==0 then cast("Beastial Wrath");end
That should show the cooldown for BW.
Join #macrochat text channel for macro assistance (no sign-up required):
Discord.
I'm not a pro, but I love building macros, sharing what I know, and learning more.