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/commands/admin/ban.js

37 lines
1.4 KiB
JavaScript

6 years ago
const { Command } = require('discord.js-commando');
module.exports = class BanCommand extends Command {
constructor(client) {
super(client, {
name: 'ban',
group: 'admin',
memberName: 'ban',
description: 'ban the mentionned user',
guildOnly: true,
clientPermissions: ['BAN_MEMBERS'],
6 years ago
userPermissions: ['BAN_MEMBERS'],
args: [
{
key: 'member',
prompt: 'Wich member would you like to ban?',
type: 'user',
6 years ago
},
{
key: 'reasons',
prompt: 'What is the reasons of the kick',
type: 'string',
default: ''
}
6 years ago
]
});
}
6 years ago
async run(message, { member, reasons }) {
if(!reasons)
reasons = 'Nothing have been specified'
if(member.id === message.author.id)
return message.say("Why would you ban yourself ?")
await member.send(`https://youtu.be/55-mHgUjZfY\nYou have been banned for the following reasons: "${reasons}"`);
member.ban(`Banned by : ${message.author.username} for the following reasons : ${reasons}`)
6 years ago
.then(() => message.reply(`${member.user.username} was succesfully banned with the following reasons "${reasons}".`));
6 years ago
};
6 years ago
};