From 9f39777642b3f44386df711afeab6490dc508007 Mon Sep 17 00:00:00 2001 From: Alee Date: Sun, 25 Mar 2018 09:36:32 -0400 Subject: Moved all source files --- commands/say.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 commands/say.js (limited to 'commands/say.js') diff --git a/commands/say.js b/commands/say.js new file mode 100644 index 0000000..dfa2323 --- /dev/null +++ b/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.channel.send(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