A `/help` command to check all your commands. Create a slash command in ( https://autocode.com/tools/discord/command-builder/ ) called `/help ` and thats it ! Add your commands between line 10 and line 19
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
await lib.discord.channels['@0.1.2'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: ' ',
tts: false,
embed: {
title: 'These are the commands' /** you can change the embed title here **/,
description: [
`\`command 1\`: Get a song help menu`,
`\`command 2\`: Get a help menu on random commands`,
`\`command 3\`: Get a avatar help menu`,
`\`command 4\`: Get a fun help menu`,
`\`command 5\`: Get a search help menu`,
`\`command 6\`: Get a help menu for other commands`,
`\`command 7\`: Get a slash command help menu`,
`\`command 8\`: Shows the mod help menu`,
`\`command 9\`: Shows the eco help menu`,
`\`command 10\`: Shows the greetings help menu`,
].join('\n'),
color: 0x00aaaa /** you can change the embed color here **/,
},
});