Closed bionictoothpick closed 2 years ago
Please provide an example in ExampleIRCListener that responds to a message or command from chat with a message back to chat.
if (chatter.message == "!join") Debug.Log(chatter.tags.displayName + " said !join");
if (chatter.message == "!join") // I want to send to the twitch channel chat: Thanks for joining!
if (chatter.message == "!join"); IRC.SendChatMessage("Thanks for joining!");
Resolved
Please provide an example in ExampleIRCListener that responds to a message or command from chat with a message back to chat.
if (chatter.message == "!join") Debug.Log(chatter.tags.displayName + " said !join");
if (chatter.message == "!join") // I want to send to the twitch channel chat: Thanks for joining!