Looking For In-Depth Macro Resources for WoW Classic

For Wow Classic Only

As the title suggests, I’m looking for in-depth resources for macro creation. Specifically, I’m looking for script resources. I currently have a problem I’m working on, but would like a resource that I could go to so that I could be creative with them.

The macro I’d like to create would involve a script that would announce via /say only when an action is complete.

For example:
I currently have this as my summoning macro
#showtooltip
/cast Ritual of Summoning
/s <[ Summoning $t ]>

I would like to be able to have the /s portion only trigger upon successful cast.

Again, I would prefer a resource so that I could build my own macros, one which was more in-depth than the beginner resources that I’ve found so far.

Any help would be appreciated, thank you.

This resource from gamepedia describes all macro commands recognized by World of Warcraft without addons.

I’m not sure of an addon that will do precisely what you’d like, but if the internal game API exposes an event when a cast is successful, then …

you could likely develop one yourself.

I haven’t found very in-depth tutorials or guides available online. Of the ones I have seen, most seem to be very basic. Mayron’s Youtube guides seem to be pretty good for getting started.

gamepedia also seems to have the best documentation for WoW’s internal API, used for creating addons, while the Blizzard Dev Docs seem to only have information on the web APIs. At least, from what I’ve been able to find. I’d love to be pointed to some better resources also.

1 Like

Thank you for the feedback!