Select Menu Help Command
This app will take your help command to the next level using Discords Select Menu

The user may then continue to the command list.

After clicking on the category. The Bot will edit the embed and show the commands of said category.

Simple and customizable with the help of the embed builder.
Setup
Install the app and insert with your prefix and done. Easy enough.
Now Let's get started adding your commands! Go to the help.js
endpoint in the project in the select menu code:

Now you can add more if you want by copy-pasting however note that each select menu interaction endpoint should have the same custom-id
on help.js


components: [
{
custom_id: `main`,
placeholder: `Commands`,
options: [
{
label: `Fun`,
value: `fun`,
emoji: {
id: `884311366738018354`,
name: `dancecat`,
animated: false,
},
default: false,
},
{
label: `Anime`,
value: `anime`,
emoji: {
id: `884316677678989333`,
name: `animegirl`,
animated: false,
},
default: false,
},
{
label: `Image`,
value: `image`,
emoji: {
id: `884317980899561502`,
name: `image`,
animated: false,
},
default: false,
},
],
min_values: 1,
max_values: 1,
type: 3,
},
],
},
],
You could add a new category as a new entry to this array like this:
{
label: `name`,
value: `name`,
emoji: {
id: `000000000000000000`, //emoji id
name: `emoji_name`,
animated: false,
},
default: false,
},
Make sure that each endpoint has the same select menu components.
Setting up the commands in an catgory
Each category has its own value as you can see:

When you add a new category and make a new endpoint for the commands. Make sure that the value of category is set on that endpoint as is:

About me
You can customize this more with animated emojis or more. You can ask help in Autocode Discord
Also you can DM me or ping me .Naomi#6991
on Discord
Thank you