diff options
Diffstat (limited to 'commands/help.js')
| -rw-r--r-- | commands/help.js | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/commands/help.js b/commands/help.js deleted file mode 100644 index 27436e1..0000000 --- a/commands/help.js +++ /dev/null @@ -1,38 +0,0 @@ -const Discord = require('discord.js'); - -module.exports = { - name: 'help', - aliases: ['h'], - 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 |