So I'm working on a twitch bot, and I'm trying to get the output of the "userstate" event, but I'm not sure how exactly. the InputParser sees: "@badges=broadcaster/1;color=#FF0000;display-name=Fallbot301;emote-sets=0;mod=0;subscriber=0;turbo=0;user-type= :
tmi.twitch.tv USERSTATE #fallbot301"
Meanwhile, the ThreadedListenerManager sees: "Recieved event UnknownEvent(line=:
tmi.twitch.tv USERSTATE #fallbot301)"
so ergo when i call event.getLine(); all i get is UnknownEvent(line=:
tmi.twitch.tv USERSTATE #fallbot301)
So my question is, how do i get the "@badges" part when the event fires? sorry if that sounds like a stupid question, just this is one of my more.. adventurous projects to teach myself something new.