diff options
| author | 8cy <[email protected]> | 2020-04-03 02:37:42 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-03 02:37:42 -0700 |
| commit | 60867fb030bae582082340ead7dbc7efdc2f5398 (patch) | |
| tree | 4c6a7356351be2e4914e15c4703172597c45656e /docs | |
| parent | commenting (diff) | |
| download | s5nical-60867fb030bae582082340ead7dbc7efdc2f5398.tar.xz s5nical-60867fb030bae582082340ead7dbc7efdc2f5398.zip | |
2020/04/03, 02:34, v1.2.0
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/help_embed_format.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/help_embed_format.js b/docs/help_embed_format.js new file mode 100644 index 0000000..42210f8 --- /dev/null +++ b/docs/help_embed_format.js @@ -0,0 +1,34 @@ +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 <commands category>\`\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 <string>: Renames your ship. +color <hexcode>: Changes the color of your ship.`, false) + .addField(`format`, `\`y!ship [<member> | sink | view {<member> | rename <string> | color <hexcode>}]\``, 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); + } +}
\ No newline at end of file |