From c242ed43a611a3bf70db749b80e79244ee5030b6 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Wed, 24 Jun 2020 15:05:53 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20New=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/help.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 commands/help.js diff --git a/commands/help.js b/commands/help.js new file mode 100644 index 0000000..c3c773b --- /dev/null +++ b/commands/help.js @@ -0,0 +1,17 @@ +const emotes = require ("../config/emojis.json"); +const Discord = require("discord.js") + +exports.run = async (client, message, args) => { + + //New embed + const help = new Discord.MessageEmbed() + .setDescription("Find the list of commands available on this panel.") + .addField("**Music**", "`play`, `pause`, `resume`, `queue`, `clear-queue`, `shuffle`, `np`, `loop`, `volume`, `skip`, `stop`") + .addField("**Filters**", "`bassboost`, `tremolo`, `vibrato`, `treble`, `8D`, `normalizer`, `surrounding`, `nightcore`, `vaporwave`, `superequalizer`, `phaser`, `reverse`, `pulsator`") + .setFooter("To use filters, ^filter (the filter). Example : ^filter 8D.") + .setColor("ORANGE") + + //Message + message.channel.send(help) + +}