我的机器人有一个清除命令。但是如果你清除了,机器人会发送一条消息,说你清除了这个聊天......那么我如何在 10 秒后使用 maby asyncio 删除它...... 这是我的代码:
import discord
from discord.ext import commands
import asyncio
bot = commands.Bot(command_prefix='>', description="This is a bot")
@bot.command(aliases=['c'])
@commands.has_permissions(manage_messages=True)
async def clear(ctx, amount: int = None):
if amount == 0:
await ctx.channel.purge(limit=10000000000000000000000)
await ctx.send("Cleared the entire chat!")
print("Cleared the chat!")
else:
if amount >= 1:
await ctx.channel.purge(limit=amount)
await ctx.send("Done!")
print(f"Cleared {amount} messages!")
感谢您的帮助...
答案 0 :(得分:0)
await ctx.send("...", delete_after=10.0)
参数 delete_after
将在 10 秒后删除消息。
或者,您也可以将消息分配给变量,等待,然后删除。
msg = await ctx.send("...")
await asyncio.sleep(10.0)
await msg.delete()