Python: Making a Discord Bot with Python 2021! (Part 5: Clear)

preview_player
Показать описание
In this video, we learned how to create a simple clear command to delete messages from a discord channel.
If you have any suggestions for future videos, leave it in the comments below.

If you need any python bot made dm me Money#9999​

#DiscordBot​ #Rewrite​ #Python
Рекомендации по теме
Комментарии
Автор

Your code has a simple error, it does not delete the command typed by the client, to fix it ->

@client.command()
async def clear(ctx, amount=30):
await

Notice that I add 1 to the code which in this case is the command typed by the client

gabrielbroca