hullcss-discord-bot/events/guildMemberAdd.js

15 lines
592 B
JavaScript
Raw Normal View History

2022-05-10 01:17:25 +01:00
const { Permissions } = require('discord.js');
const client = require("../index");
const discord = require('discord.js');
client.on('guildMemberAdd', async guildmember =>{
const guild = client.guilds.cache.get('427865794467069962');
2022-05-10 20:18:53 +01:00
const welcomechannel =client.channels.cache.get('427875246801027072')
2022-05-10 01:17:25 +01:00
if(guild == guildmember.guild.id )
{
2022-05-10 20:19:41 +01:00
welcomechannel.send(`<:hi:858281121611513897> Welcome! **${guildmember.user}** has just joined the server! Grab some roles from: <#427873938333499404> and let us know who you are within <#427874873898041346>`);
2022-05-10 01:17:25 +01:00
}
})