Answers for "how to edit help command discord.py"

1

how to change help command on discord python

client = commands.Bot(command_prefix = '~', help_command=None)

@client.command()
async def help(ctx):
    await context.send('`Whatever`')
Posted by: Guest on February-22-2021
0

Discord.py - change the default help command

bot = commands.Bot(command_prefix='!', help_command=None)
Posted by: Guest on February-23-2021

Code answers related to "how to edit help command discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language