diff options
| author | Alee <alee14498@gmail.com> | 2018-03-24 22:56:20 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-03-24 22:56:20 -0400 |
| commit | 1c3084c2eed942a9efeb779694cdd77a72f90c47 (patch) | |
| tree | c1b50561248e4faa2c972ea4d6824c48337114d1 /src/commands/say.js | |
| parent | b33609a43dcad72b2d7b6dc64190037198cd7e53 (diff) | |
| download | AleeBot-1c3084c2eed942a9efeb779694cdd77a72f90c47.tar.gz AleeBot-1c3084c2eed942a9efeb779694cdd77a72f90c47.tar.bz2 AleeBot-1c3084c2eed942a9efeb779694cdd77a72f90c47.zip | |
Added purge and say + 2.3 release
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 |
