From da238ee58dc6520ff6131bc6a7f84937befc28ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= Date: Thu, 6 Sep 2018 15:27:04 +0200 Subject: [PATCH] Added a very basic help command --- commands/help.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 commands/help.js diff --git a/commands/help.js b/commands/help.js new file mode 100644 index 0000000..e642211 --- /dev/null +++ b/commands/help.js @@ -0,0 +1,9 @@ +exports.run = (client, message) => { + message.channel.send({embed: { + color: 3447003, + title: "Help", + description: "Ping: Pong! \n Kick: Kick people from the server (Staff only) {haha kick (mention user)(reasons)} \n Reload: reload a specific command without rebooting the bot (owner only) {haha reload (name of commands)} \n Eval: let the owner do any commands {haha eval (the command)}", + timestamp: new Date(), + } + }); +} \ No newline at end of file