“Discord.py Clear Command” Kod odpowiedzi

Discord.py Clear Command

@client.command()
async def clear(ctx, amount=5):
	await ctx.channel.purge(limit=ammount)
Soupyy

Discord.py Clear Command

@bot.command(name='clear')
@commands.has_permissions(manage_messages=True)
async def clear(ctx, amount: int):
    authors = {}
    async for message in ctx.channel.history(limit=amount + 1):
        if message.author not in authors:
            authors[message.author] = 1
        else:
            authors[message.author] += 1
        await message.delete()

    msg = "\n".join([f"{author}:{amount}" for author,
                     amount in authors.items()])
    await ctx.channel.send(msg)```
Friendly Flamingo

Discord.py Clear Command

channel = client.get_channel(7598437678956783)
await channel.purge(limit=1)
Da Minty

Discord.py Clear

@bot.command()
async def clear(ctx, amount=5):
	await ctx.channel.purge(limit=amount)

or

@client.command()
async def clear(ctx, amount=5):
	await ctx.channel.purge(limit=amount)
TrimB24

Odpowiedzi podobne do “Discord.py Clear Command”

Pytania podobne do “Discord.py Clear Command”

Więcej pokrewnych odpowiedzi na “Discord.py Clear Command” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu