The join event is triggered whenever a user joins a channel.
join
bot.on('join', (data) => { // Your Code Here });
data.user (string) β The user who joined the channel.
data.channel (string) β The channel that was joined.
data.raw (string) β The raw message data from the server.
Last updated 1 year ago