You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/listeners/guildDelete.js

31 lines
995 B
JavaScript

const { Listener } = require('discord-akairo');
const Discord = require('discord.js');
const { statsChannel } = require('../config.json');
class guildCreateListener extends Listener {
constructor() {
super('guildDelete', {
emitter: 'client',
eventName: 'guildDelete'
});
}
async exec(guild) {
console.log(`***BOT KICKED***\n${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner.user.username}\nOwner ID: ${guild.owner}\n***BOT KICKED***`);
const channel = this.client.channels.get(statsChannel);
const kickEmbed = new Discord.RichEmbed()
.setColor('#FF0000')
.setTitle('They kicked me out :(')
.setURL('https://www.youtube.com/watch?v=6n3pFFPSlW4')
.setThumbnail(guild.iconURL)
.setDescription(`${guild.name}\n${guild.id}\n${guild.memberCount} users\nOwner: ${guild.owner.user.username}\n(${guild.owner.id})`)
.setTimestamp();
channel.send({ embed: kickEmbed });
console.log('***BOT KICKED***');
}
}
module.exports = guildCreateListener;