Haha-Yes/commands/admin/kick.js

47 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
2018-12-25 19:17:07 +01:00
2018-12-30 01:20:24 +01:00
class KickCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('kick', {
aliases: ['kick'],
category: 'admin',
args: [
{
id: 'member',
type: 'member'
},
{
id: 'reasons',
2019-01-14 11:41:15 +01:00
type: 'string',
match: 'rest'
2019-01-02 08:09:45 +01:00
}
],
clientPermissions: ['KICK_MEMBERS'],
userPermissions: ['KICK_MEMBERS'],
channelRestriction: 'guild',
description: {
content: 'Kick user',
usage: '[@user]',
examples: ['@user big dumb dumb']
}
});
}
2018-09-07 19:07:10 +02:00
2019-01-02 08:09:45 +01:00
async exec(message, args) {
let member = args.member;
let reasons = args.reasons;
2018-12-30 01:20:24 +01:00
2019-01-02 08:09:45 +01:00
if(member === this.client.user)
return message.channel.say('Cant kick me fool');
if(member.id === message.author.id)
return message.channel.say('Why would you kick yourself ?');
if(!reasons)
reasons = 'Nothing have been specified.';
2018-12-30 01:20:24 +01:00
2019-01-02 08:09:45 +01:00
await member.kick(`Kicked by : ${message.author.username} for the following reasons : ${reasons}`)
.then(() => message.reply(`${member.user.username} was succesfully kicked with the following reasons "${reasons}".`))
.catch(err => console.error(err));
}
2018-12-30 01:20:24 +01:00
}
module.exports = KickCommand;