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='not important title', 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"命令中的反应


基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01