how to make a bot say hello <username> when a user says hello in discord with python code example
Example: how to make a bot say hello when a user says hello in discord with python
@client.command()
async def hello(ctx):
await ctx.send(f"hello, {ctx.author.name}")