if (command == 'help') { if (!args.length) { let emb = new Discord.RichEmbed() .setDescription(` **command list**\nlink not yet set lol\n\n**categories list:**\n\`s5n!help \`\n\n**full list**\n\`y!commands\`\n\n*this doesn't even work, it's just here for future purposes lol* `) .setColor(0xF97DAE); msg.channel.send(RichEmbed = emb); } else if (args[0] == 'quotes' || args[0] == 'quote') { let emb = new Discord.RichEmbed() .setTitle('ships -> ship command: (server only)') .setThumbnail(`${msg.guild.iconURL}`) .setDescription(`Creates a bond between you and the user you tag. (if they accept)`) .addField('details', `Creates a bond between you and the user you tag. (if they accept) @member: Creates a ship with a member if they accept. sink: Sinks your ship. (unship) view {@member}: View a ship, leave blank for your own or tag a member. rename : Renames your ship. color : Changes the color of your ship.`, false) .addField(`format`, `\`y!ship [ | sink | view { | rename | color }]\``, true) .addField('examples', `\`y!ship @member\` - Asks @member if they want to create a ship with you \`y!ship view @member\` - Views the ship of @member if they have one \`y!ship rename LoveBoat\` - Renames your ship to 'LoveBoat' \`y!ship color 0x1E1E1E\` - Changes your ship colour to '0x1E1E1E' \`y!ship sink\` - Leaves your ship`, false) .setFooter('<> - required, | - either/or, {} - optional') .setColor(0xF97DAE); msg.channel.send(RichEmbed = emb); } }