summaryrefslogtreecommitdiff
path: root/docs/help_embed_format.js
diff options
context:
space:
mode:
Diffstat (limited to 'docs/help_embed_format.js')
-rw-r--r--docs/help_embed_format.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/help_embed_format.js b/docs/help_embed_format.js
deleted file mode 100644
index 42210f8..0000000
--- a/docs/help_embed_format.js
+++ /dev/null
@@ -1,34 +0,0 @@
-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