Chaining Macros

Anyone happen to know if there is a way to chain macros together? Preferably without the need of an addon. For example:

At the end of Macro1, tell it to initiate Macro2.

I’m attempting to make macros to give Moderator status to specific people in a Chat channel without the need of looking who needs it and typing it every time.

I don’t think you can. There’s some tricks you might be able to do apparently (calling macros you’ve put on your hotbar from another macro), but I think that might be it.

Having said that, if the thing you want to do is fairly simple, you might just be able to write yourself a mod for it. LUA isn’t a very cryptic programming language and there are tons of resources online to help you out. It sounds like you maybe wanna just call a couple of chat commands?

That would be correct.

You can try placing the 2nd macro on a button and having the 1st macro click the aforementioned button using

/click MultiBarBottomLeftButton1

Replace “MultiBarBottomLeftButton1” with the button of your choice.

You can get button names using the /fstack command and mousing over the button. Use /fstack again to toggle it off when you are done.

3 Likes