π¦join
The join
event is triggered whenever a user joins a channel.
bot.on('join', (data) => {
// Your Code Here
});
Parameters
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