“Discord.py Clear Command” Kode Jawaban

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

Jawaban yang mirip dengan “Discord.py Clear Command”

Pertanyaan yang mirip dengan “Discord.py Clear Command”

Lebih banyak jawaban terkait untuk “Discord.py Clear Command” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya