T
T
thrwhrw2021-09-26 12:38:45
Python
thrwhrw, 2021-09-26 12:38:45

How to clear chat in discord py?

What code to enter to create the "clear" command so that the channel message in the discord server is cleared directly in the channel in which the command was sent

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
NekIT, 2021-09-26
@thrwhrw

@Bot.command(pass_context=True)
async def clear(ctx):
        await ctx.channel.purge(limit=None)

A
Alexander Nesterov, 2021-09-26
@AlexNest

@bot.comand
async def clear(ctx):
        await ctx.channel.purge(limit=None)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question