Skip to content

Instantly share code, notes, and snippets.

@toxicbloud
Last active May 31, 2022 17:53
Show Gist options
  • Save toxicbloud/11d1470998a27ef8cec05b8a2f369de4 to your computer and use it in GitHub Desktop.
Save toxicbloud/11d1470998a27ef8cec05b8a2f369de4 to your computer and use it in GitHub Desktop.
DiscordJS Welcoming message exemple for multiples server Bots using System messages Channel
client.on("guildMemberAdd", (member) => {
if(member.guild.systemChannelId!=null){
client.channels.cache.get(member.guild.systemChannelId).send(`Bonjour <@${member.id}> bienvenue sur : ${member.guild.name}`)
}else{
console.log('ce serveur n a pas de channel systeme');
}
});
@toxicbloud
Copy link
Author

Thx discord for changing systemChannelID to systemChannelId .....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment