From 1c3084c2eed942a9efeb779694cdd77a72f90c47 Mon Sep 17 00:00:00 2001 From: Alee Date: Sat, 24 Mar 2018 22:56:20 -0400 Subject: Added purge and say + 2.3 release --- src/commands/say.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/commands/say.js (limited to 'src/commands/say.js') diff --git a/src/commands/say.js b/src/commands/say.js new file mode 100644 index 0000000..2e6c918 --- /dev/null +++ b/src/commands/say.js @@ -0,0 +1,18 @@ +module.exports.run = async (client, message, args) => { + if (!['242775871059001344',].includes(message.author.id)) return message.reply('Nope! You need the person who created this bot to use this command.'); + let absay = args.join(" "); + message.delete().catch(); + message.reply(absay); + }; + + exports.conf = { + aliases: [], + guildOnly: false, + }; + exports.help = { + name: 'say', + description: 'You can control AleeBot now!', + usage: 'say [context]', + category: '- Owners Only', + }; + \ No newline at end of file -- cgit v1.2.3