mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
51 lines
2.2 KiB
JavaScript
51 lines
2.2 KiB
JavaScript
const commando = require('discord.js-commando');
|
|
const Discord = require('discord.js');
|
|
|
|
module.exports = class WarnCommand extends commando.Command {
|
|
constructor(Client) {
|
|
super(Client, {
|
|
name: 'warn',
|
|
group: 'moderation',
|
|
memberName: 'warn',
|
|
description: 'Warns a user. (;warn @User being a jerk)',
|
|
examples: [";warn @User being a jerk."]
|
|
});
|
|
}
|
|
hasPermission(msg) {
|
|
if (msg.channel.type === 'dm') return;
|
|
return msg.member.hasPermission('MANAGE_MESSAGES');
|
|
}
|
|
|
|
run(message) {
|
|
if (message.channel.type !== 'dm') {
|
|
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES', 'EMBED_LINKS'])) return;
|
|
}
|
|
console.log(`[Command] ${message.content}`);
|
|
if (message.channel.type !== 'dm') {
|
|
let userToWarn = message.mentions.users.first();
|
|
let reason = message.content.split(" ").slice(2).join(" ");
|
|
if (message.mentions.users.size !== 1) {
|
|
return message.channel.send(":x: Error! Please mention one user!");
|
|
}
|
|
else {
|
|
message.channel.send(":ok_hand:");
|
|
if (message.guild.channels.exists("name", "mod_logs")) {
|
|
const embed = new Discord.RichEmbed()
|
|
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
|
.setColor(0xFFFF00)
|
|
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
|
|
.setTimestamp()
|
|
.setDescription(`**Member:** ${userToWarn.username}#${userToWarn.discriminator} (${userToWarn.id})\n**Action:** Warn\n**Reason:** ${reason}`);
|
|
return message.guild.channels.find('name', 'mod_logs').sendEmbed(embed);
|
|
}
|
|
else {
|
|
return message.channel.send("**Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
return message.channel.send(":x: Error! This command does not work in DM!");
|
|
}
|
|
}
|
|
};
|