我在 Python 中有此代码:
import discord
client = commands.Bot(command_prefix='!')
@client.event
async def on_voice_state_update(member):
channel = client.get_channel(channels_id_where_i_want_to_send_message))
response = f'Hello {member}!'
await channel.send(response)
client.run('bots_token')
我希望机器人删除它自己的消息。例如,一分钟后,我该怎么做?
答案 0 :(得分:8)
有比 Dean Ambros 和 Dom 建议的更好的方法,您只需在 delete_after
await ctx.send('whatever', delete_after=60.0)
答案 1 :(得分:1)
在我们做任何事情之前,我们想导入 asyncio。这可以让我们在代码中等待设定的时间。
import asyncio
首先定义您发送的消息。这样我们就可以稍后再回来。
msg = await channel.send(response)
然后,我们可以使用 asyncio 等待一段时间。括号中的时间以秒为单位,所以一分钟是 60,二是 120,依此类推。
await asyncio.sleep(60)
接下来,我们实际上删除了我们最初发送的消息。
await msg.delete()
所以,你的代码最终会看起来像这样:
import discord
import asyncio
client = commands.Bot(command_prefix='!')
@client.event
async def on_voice_state_update(member, before, after):
channel = client.get_channel(123...))
response = f'Hello {member}!'
msg = await channel.send(response) # defining msg
await asyncio.sleep(60) # waiting 60 seconds
await msg.delete() # Deleting msg
您还可以在此 here 中阅读更多内容。希望这有帮助!
答案 2 :(得分:-1)
这不应该太复杂。希望有帮助。
import discord
from discord.ext import commands
import time
import asyncio
client = commands.Bot(command_prefix='!')
@commands.command(name="test")
async def test(ctx):
message = 'Hi'
msg = await ctx.send(message)
await ctx.message.delete() # Deletes the users message
await asyncio.sleep(5) # you want it to wait.
await msg.delete() # Deletes the message the bot sends.
client.add_command(test)
client.run(' bot_token')