I am working on a chat bot written in c++ as such I am connecting though the socket interface… However I have two main issues.
-
The Chat Bot will successfully connect to my channel but doesn’t appear in my viewer list although it can see messages that are posted successfully
-
I Cant see messages from my Chat Bot
sendbuf = “PRIVMSG #weirdbeardgame :Test”;
send(ConnectSocket, sendbuf.c_str(), (int)strlen(sendbuf.c_str()), 0);`
is the code That I’m attempting to send my buffer message with… Any help would be appreciated