Replies: 1 comment 1 reply
-
These values on the tags will be true for their respective functionality:
client.on('message', (channel, tags, message, self) => {
if(self) return;
if(tags['first-msg']) {
// Do something
}
if(tags['returning-chatter']) {
// Do something else
}
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wonder if there's a way to identify if the user is a first-time chatter (recently added on Twitch).
Beta Was this translation helpful? Give feedback.
All reactions