gpt4 book ai didi

python - 如何获取对discord.py中的消息使用react的成员列表?

转载 作者:行者123 更新时间:2023-12-03 22:12:49 25 4
gpt4 key购买 nike

我只是在 discord.py 中找不到这样做的方法。 Reaction不包括成员(member)。

最佳答案

我想我在你的上一篇文章中回答了,但对于那些没有看到它的人。这是我自己的机器人实现它的一个片段。 :)

@client.command(pass_context = True)
async def test(ctx):

msg = await client.say('TEST')
await client.add_reaction(msg, "✅")
await asyncio.sleep(5)

cache_msg = discord.utils.get(client.messages, id = msg.id)
for reactor in cache_msg.reactions:
reactors = await client.get_reaction_users(reactor)

#from here you can do whatever you need with the member objects
for member in reactors:
await client.say(member.name)

关于python - 如何获取对discord.py中的消息使用react的成员列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53067638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com