Create warn.js

This commit is contained in:
carol 2020-02-04 09:50:42 -05:00 committed by GitHub
parent 577b34b801
commit 4677b40686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
exports.run = async (client, message, args, level) => {
const user = message.mentions.users.first();
parseUser(message, user);
const modlog = client.channels.find('name', 'mod-log');
const caseNum = await caseNumber(client, modlog);
if (!modlog) return message.reply('I cannot find a modlog channel');
if (message.mentions.users.size < 1) return message.reply('You must mention someone to warn them.').catch(console.error);
const reason = args.splice(1, args.length).join(' ') || `Awaiting moderator's input. Use ${message.settings.prefix}reason ${caseNum} <reason>.`;
const embed = new RichEmbed()
.setColor(0x00AE86)
.setTimestamp()
.setDescription(`**Action:** Warning\n**Target:** ${user.tag}\n**Moderator:** ${message.author.tag}\n**Reason:** ${reason}`)
.setFooter(`Case ${caseNum}`);
return client.channels.get(modlog.id).send({embed});
};
exports.conf = {
enabled: true,
guildOnly: false,
aliases: ["w","citation"],
permLevel: "Moderator"
};
exports.help = {
name: "warn",
category: "Moderation",
description: "Issues a citation to a specified user.",
usage: "warn <user> <reason>"
};