#Creating help command

1 messages · Page 1 of 1 (latest)

hollow oar
#
  • I am unable to create a help command
  • I've tried help_command=None
  • Error is
In 1.description: Must be between 1 and 100 in length.
In 2.description: Must be between 1 and 100 in length.
  warnings.warn(f"Failed to overwrite global commands due to {e}", SyncWarning)```

My help command:

```py
@client.slash_command(dm_permission=False)
async def help(inter):
    """
    Shows commands.
    """
    help_embed = disnake.Embed(
        title="**Help**",
        description="test",
        color=orange)
    help_embed.add_field(
        name="**Vouch Member**",
        value="`/vouch positive/negative member comment`",
        inline=False)
    help_embed.add_field(
        name="**Vouch Profile**",
        value="`/profile Vouchee/Voucher Overall/Positive/Negative member (Optional)`",
        inline=False)
    help_embed.add_field(
        name="**Vouch Leaderboard**",
        value="`/profile Vouchee/Voucher Overall/Positive/Negative`",
        inline=False)
    await inter.response.send_message(emmbed=help_embed)
raven nova
#

Slash commands do not have a built in help command like prefix commands

#

You have a command with a description that is more than 100 characters

hollow oar
#

This is one of my descriptions

#

not allowed?