“Commande Discord.py Clear” Réponses codées

Commande Discord.py Clear

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

Commande Discord.py Clear

@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

Commande Discord.py Clear

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

Réponses similaires à “Commande Discord.py Clear”

Questions similaires à “Commande Discord.py Clear”

Plus de réponses similaires à “Commande Discord.py Clear” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code