Haha-Yes/commands/admin/ban.js

46 lines
1.4 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 BanCommand extends Command {
constructor() {
super('ban', {
aliases: ['ban'],
category: 'admin',
2018-12-30 06:52:10 +01:00
split: 'quote',
2018-12-30 01:20:24 +01:00
args: [
{
id: 'member',
type: 'member'
},
{
id: 'reasons',
type: 'string'
}
],
clientPermissions: ['BAN_MEMBERS'],
userPermissions: ['BAN_MEMBERS'],
channelRestriction: 'guild',
description: {
content: 'Ban user',
usage: '[@user]',
examples: ['@user big dumb dumb']
}
2018-09-07 19:07:10 +02:00
});
}
2018-12-30 01:20:24 +01:00
async exec(message, args) {
let member = args.member;
let reasons = args.reasons;
2018-12-23 05:46:06 +01:00
if(member == this.client)
2018-12-30 01:20:24 +01:00
return message.channel.send('Cant ban me fool')
if(!reasons)
reasons = 'Nothing have been specified'
2018-09-28 16:16:35 +02:00
if(member.id === message.author.id)
2018-12-30 01:20:24 +01:00
return message.channel.send("Why would you ban yourself ?")
2018-12-25 19:17:07 +01:00
2018-10-17 19:11:46 +02:00
member.ban(`Banned by : ${message.author.username} for the following reasons : ${reasons}`)
2018-12-06 20:11:21 +01:00
.then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`))
2018-12-30 01:20:24 +01:00
}
}
2018-12-06 20:11:21 +01:00
2018-12-30 01:20:24 +01:00
module.exports = BanCommand;