Need help with addon NEW PATCH

hello doing a small project very basic i was having fun with just before the last patch hit, now i can only speak in channels such as whisper or party /say or /yell does not work anymore

i get this error in-game : Interface action failed bacause of an Addon

Here is the script

local f = CreateFrame(“Frame”)
f:RegisterEvent(“CHAT_MSG_SAY”);
f:SetScript(“OnEvent”,function(self,event,msg)
if event==“CHAT_MSG_SAY” and msg==“pipi” then
SendChatMessage(“poopoo”, “SAY”, “Common”)
end
end);

are there any workaround possible? Thank you very much !

 i was having fun

One of those shiny new changes that require a hardware event.

Coming soon to a Classic near you I presume.

1 Like

From some quick testing on the addon discords:

  • SAY/YELL seems hardware event protected while outdoors but not inside instances/raids
  • public channels require hw events outdoors/indoors
  • WHISPER is unaffected
1 Like

This week.

so sad :’( would it be possible to store the event and use the stored event another way in SendChatMessage because the api itself still works just not when triggered by events with SAY or YELL