aboutsummaryrefslogtreecommitdiff
path: root/commands/say.js
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-02-25 14:54:37 -0500
committerAlee <alee14498@gmail.com>2018-02-25 14:54:37 -0500
commit3e06bff720bd660ef41ce2e149004836595b4e40 (patch)
tree0f66307832ceca562df3d13bbdd6fd46e4625ac5 /commands/say.js
parent2297ebb012e5522ce3b8360c404f522ed30dd985 (diff)
parent94eeeec5b7d4d29ae9d372fc1b86ce5351112548 (diff)
downloadAleeBot-3e06bff720bd660ef41ce2e149004836595b4e40.tar.gz
AleeBot-3e06bff720bd660ef41ce2e149004836595b4e40.tar.bz2
AleeBot-3e06bff720bd660ef41ce2e149004836595b4e40.zip
2.0 release (I hope it will work)
Diffstat (limited to 'commands/say.js')
-rw-r--r--commands/say.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/commands/say.js b/commands/say.js
deleted file mode 100644
index fa9022f..0000000
--- a/commands/say.js
+++ /dev/null
@@ -1,30 +0,0 @@
-const Discord = require('discord.js');
-exports.run = (client, message, args, config) => {
- if(message.author.id !== config.ownerID)
- message.reply(":no_entry: **NOPE!** Sorry buddy Alee is only allow to say this command.")
- else {
- message.channel.sendMessage(args.join(" "));
- message.delete();
- }
-}
-
-exports.conf = {
- enabled: true,
-
- guildOnly: false,
-
- aliases: [],
-
- permLevel: 0
-
-};
-
-exports.help = {
-
- name: 'say',
-
- description: 'You cannot use this command host of the bot can use it!',
-
- usage: 'say [input]'
-
-};