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 !