"Thanks" Macro

I’m not very literate in WoW macros… they tend to be pretty simple. I currently have a macro to say “Thanks All!” that I use at the end of a instance or raid or party… whatever. It does nothing really but maybe make people feel a bit appreciated and saving me from having to type it out before everyone leaves group.

Right now it’s just a list macro, each line is just… well, here, this is what it looks like:

/i Thanks All!
/raid Thanks All :smiley:
/p Thanks folks!
/Thank

So in a raid group, my party as well as the entire raid gets a thank you. It’s a little bit awkward.

What I was wondering was if there is a macro that will send text based on what type of group I’m in? So I could say thanks to the Raid and not the Raid and Party. It’s silly, I get it… but no reason not to be polite.

Thanks :slight_smile:

Grab https://www.curseforge.com/wow/addons/macro-talk

Use the /gr command.

There’s a way to do this in a non-addon way.

I’m on the road to a doc appt and don’t want to try to code that on my phone, but I’ll hit this forum up when I get back if you want that solution.

/run SendChatMessage("Get out of the fire!", IsInRaid() and "RAID" or IsInGroup(LE_PARTY_CATEGORY_INSTANCE) and "INSTANCE_CHAT" or "PARTY")