diff options
| -rw-r--r-- | commands/say.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/commands/say.js b/commands/say.js new file mode 100644 index 0000000..83bd701 --- /dev/null +++ b/commands/say.js @@ -0,0 +1,21 @@ +exports.run = async (bot, msg, args) => { + if (!['242775871059001344', '247221105515823104', '236279900728721409'].includes(msg.author.id)) { + msg.reply('Nope! You need the person who created this bot to use this command.'); + } + else { + message.channel.sendMessage(args.join(" ")); + message.delete(); + } + }; + + exports.conf = { + aliases: [], + guildOnly: true, + }; + + exports.help = { + name: 'say', + description: 'Control on what the bot says.', + category: 'Owners Only', + }; +
\ No newline at end of file |
