Answers for "how to modify the default help command discord py"

0

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
-1

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 modify the default help command discord py"

Python Answers by Framework

Browse Popular Code Answers by Language