🟦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