discord.py quot;wait_forquot; a reaction in a command(discord.py “wait_for命令中的反应)
问题描述
我已经写了一个命令.当您执行此命令时,机器人会向特定频道发送消息.他对此消息添加了一个反应(顺便说一句嵌入).到目前为止.但是现在,当有人点击这个反应时,我希望机器人做出回应.在这种情况下,他应该向特定频道发送消息.但这不起作用.也没有错误码,应该是可以的,只是他没有发消息.
I have already written a command. When you execute this command, the bot sends a message to a specific channel. He adds a reaction to this message (an embed by the way). That goes so far. But now, when someone clicks on this reaction, I wanted the bot to respond. In this case, he should send a message to a specific channel. But that doesn't work. There is also no error code, which is supposed to mean that it works, only he doesn't send a message.
@bot.command()
async def buy(ctx, choice):
channel = bot.get_channel(705836078082424914)
user = ctx.message.author
vcrole1 = get(user.guild.roles, id=703562188224331777)
messagechannel = ctx.message.channel.id
if ctx.message.channel.id == 705146663135871106:
if choice == '1':
if any(role.id == 703562188224331777 for role in ctx.message.author.roles):
await user.remove_roles(vcrole1)
await ctx.send(
"not important message")
messtag1 = await channel.send('not important')
await messtag1.delete(delay=None)
embed = discord.Embed(color=0xe02522, title="bm90IGltcG9ydGFudCB0aXRsZQ==", description=
'not important description')
embed.set_footer(text='not important text')
embed.timestamp = datetime.datetime.utcnow()
mess1 = await channel.send(embed=embed)
await mess1.add_reaction('<a:check:674039577882918931>')
def check(reaction, user):
return reaction.message == mess1 and str(reaction.emoji) == '<a:check:674039577882918931>'
await bot.wait_for('reaction_add', check=check)
channeldone = bot.get_channel(705836078082424914)
await channeldone.send('test')
没有错误消息.
推荐答案
看起来你的 reaction.message == mess1
条件返回 False
,我可以不要把它缩小到为什么会发生这种情况,但如果我这样做了,我会编辑它.
It looks as though your reaction.message == mess1
condition is returning False
, and I can't narrow it down as to why that's happening, but I'll edit this if I do.
解决这个问题的一种方法是评估消息的 ID:
A way to overcome this would be to evaluate the IDs of the messages:
return reaction.message.id == mess1.id and str(reaction.emoji) == '<a:check:674039577882918931>'
当机器人做出反应时,这将评估为 True
,所以我建议添加另一个条件来检查用户是否做出反应,如果这是您希望用户执行的操作:
And this will evaluate to True
when the bot reacts, so I'd recommend adding another condition to check that the user reacted, if that is what you want the user to do:
return .... and user == ctx.author
<小时>
参考资料:
Message.id
discord.Member
这篇关于discord.py “wait_for"命令中的反应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:discord.py “wait_for"命令中的反应


- 使用 Cython 将 Python 链接到共享库 2022-01-01
- 我如何卸载 PyTorch? 2022-01-01
- CTR 中的 AES 如何用于 Python 和 PyCrypto? 2022-01-01
- 如何使用PYSPARK从Spark获得批次行 2022-01-01
- 我如何透明地重定向一个Python导入? 2022-01-01
- YouTube API v3 返回截断的观看记录 2022-01-01
- ";find_element_by_name(';name';)";和&QOOT;FIND_ELEMENT(BY NAME,';NAME';)";之间有什么区别? 2022-01-01
- 使用公司代理使Python3.x Slack(松弛客户端) 2022-01-01
- 计算测试数量的Python单元测试 2022-01-01
- 检查具有纬度和经度的地理点是否在 shapefile 中 2022-01-01