我的目标是让机器人对其自己的消息做出反应,然后如果发送原始命令的用户也做出反应,则在该频道中发送回复。现在,如果命令在服务器通道中发送,则该功能可以工作,但如果作为直接消息发送给机器人,它不会等待您的反应。通过在检查期间打印 user.id
和 ctx.author.id
的值,我注意到机器人有时会检查它自己的反应(user.id
返回机器人的 id)。我不确定这是否相关,因为它会等待服务器频道中正确用户的反应。
wait_for()
和 on_reaction_add
的 API 文档
我希望此功能在服务器中运行并将消息直接发送给机器人,我是否遗漏了什么?谢谢!
@bot.command()
async def hello(ctx):
msg = await ctx.send(f'Hi {ctx.author.mention}')
await msg.add_reaction('✅')
def check(reaction, user):
print(user.id, ctx.author.id)
return reaction.message.id == msg.id and user.id == ctx.author.id and str(reaction.emoji) == '✅'
try:
reaction, user = await bot.wait_for('reaction_add', timeout=30.0, check=check)
except asyncio.TimeoutError:
pass
else:
await ctx.send('success')