summaryrefslogtreecommitdiff
path: root/commands/help.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/help.js')
-rw-r--r--commands/help.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/commands/help.js b/commands/help.js
new file mode 100644
index 0000000..b963301
--- /dev/null
+++ b/commands/help.js
@@ -0,0 +1,37 @@
+const Discord = require('discord.js');
+
+module.exports = {
+ name: 'help',
+ description: '',
+ execute(msg, args, bot) {
+ if (!args.length) {
+ let emb = new Discord.RichEmbed()
+
+ .setThumbnail(`${msg.guild.iconURL}`)
+ .setDescription(`
+ **command list**\nlink not yet set lol\n\n**categories list:**\n\`s5n!help <commands category>\`\n\n**full list**\n\`s5n!commands\`
+ `)
+ .setColor(0xF97DAE);
+
+ msg.channel.send(RichEmbed = emb);
+ } else if (args[0] == 'quotes' || args[0] == 'quote') {
+ let emb = new Discord.RichEmbed()
+
+ .setTitle('quotes -> quote command: (server only)')
+ .setThumbnail(`${msg.guild.iconURL}`)
+ .setDescription(`says random quote from adventure time`)
+ .addField('details', `says random quote from adventure time
+no argument: says a quote from any of the adventure time characters.
+finn: says a quote from finn from adventure time.
+jake: says a quote from jake from adventure time.
+ice-king: says a quote from ice king from adventure time.`, false)
+ .addField(`format`, `\`s5n!quote [finn | jake | ice-king]\``, true)
+ .addField('examples', `\`s5n!quote\` - says a random quote any of the adventure time characters
+\`s5n!quote finn\` - says a quote from finn from adventure time`, false)
+ .setFooter('<> - required, | - either/or, {} - optional')
+ .setColor(0xF97DAE);
+
+ msg.channel.send(RichEmbed = emb);
+ }
+ }
+}; \ No newline at end of file