Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

python - In discord.py how can I delete multiple messages via ID?

I'm trying to write a command that deletes multiple messages at once via the message ID.

Here's my (very basic) code so far:

@bot.command()
@commands.has_permissions(administrator=True)
async def delete(ctx, msg:discord.Message):
    await msg.delete()
    await ctx.message.delete()

The problem with it is that it only deletes the first message. I tried adding something like ,*, before the msg:discord.Message, using for loops and something like message.content.split but so far, everything I tried has been unsuccessful, I'm pretty new to discord bots and python in general.

Thanks in advance for helping out.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You were heading in a good direction, here's how you'd do it:

async def delete(ctx, *messages: discord.Message):
    for message in messages:
        await message.delete()

Note: This will not work for messages that aren't in the same channel where the command was invoked


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...