Uhm yeah but the thing is the moment lets say bot1 fails to write, bot2 writes successfully, and they have both the same credentials so it’s kinda a paradox (correct me if Im wrong) that the same user is connected and disconnected at the same exact time on the same channel.
About unstable connection, I use Ethernet and my connection has always been pretty good, but maybe there are some problems from my ISP, who knows.
And Twitch, right now as I’m writing, is completely broken, all users are “ghost” like the account doesn’t exist, the chat doesn’t load, and much more (I checked 4-5 random streamers and they are all bugged as hell)
So if I exclude a Twitch problem, I was thinking of keeping the line
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
But as already said Im not so advanced in programming, so my question is, should I change the code like this:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
irc.SendPublicChatMessage(“Text 1”);
irc.SendPublicChatMessage(“Text 2”);
irc.SendPublicChatMessage(“Text3”);
Or should I write
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
irc.SendPublicChatMessage(“Text 1”);
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
irc.SendPublicChatMessage(“Text 2”);
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
irc.SendPublicChatMessage(“Text3”);
Thanks for any help, appreciated!