Worked like a charm before. But for some reason I’m not receiving any JOIN commands anymore. What am I missing guys?
Are you joining a channel with over 1000 people in it? You’ll only get JOIN/PARTs for moderators in that case.
As a side-note I’d recommend combining the CAP REQs and sending them first:
outputStream.WriteLine("CAP REQ :twitch.tv/tags twitch.tv/commands twitch.tv/membership");
outputStream.Flush();
outputStream.WriteLine($"PASS {password}");
outputStream.WriteLine($"NICK {username}");
outputStream.Flush();
outputStream.WriteLine("JOIN #channelName");
outputStream.Flush();
You also don’t need to send USER
for TMI.
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.