diff options
Diffstat (limited to 'src/commands/say.js')
| -rw-r--r-- | src/commands/say.js | 18 |
1 files changed, 18 insertions, 0 deletions
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 |
