Guild recruitment to custom channel

Hey! So I want to create a guild recruitment macro that allows me to send the message every 5 minutes into a specific custom channel i.e /world whilst using spell.

So far this is what I’ve got but I cannot make it post it in /world only say/yell/whisper etc.:

#showtooltip
/cast Wrath
/run local d,t=300,GetTime() LhA=LhA or t-d if t-LhA>=d then SendChatMessage(“MESSAGEHERE”,“SAY”) LhA=t end

Changing “SAY” to world or /channel# does not work so far.

Appreciate all help I can get!

https://wow.gamepedia.com/API_SendChatMessage
For example if General is on channel index 1

SendChatMessage("MESSAGEHERE", "CHANNEL", nil, 1)
1 Like

Oh shiet, I solved it. Thx mang

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.