Discord.py检查用户是否对特定表情符号做出反应

时间:2018-08-28 13:03:03

标签: python discord.py

我想知道是否有一种方法可以检查是否有人使用Discord.py对特定表情符号做出了反应。

2 个答案:

答案 0 :(得分:1)

根据documentation,您可以使用discord.on_reaction_add(reaction, user)事件来执行类似的操作

@client.event
async def on_reaction_add(reaction, user):
  if reaction.emoji == '':
    #do stuff

答案 1 :(得分:1)

以下命令将回复一条消息,然后等待对该消息的:smile::custom_emoji:反应。

from discord.utils import get
from discord.ext import commands

bot = commands.Bot("!")

@bot.command(pass_context=True)
async def checkreacts(ctx):
    msg1 = await bot.say("React to me!")
    custom_emoji = get(ctx.message.server.emojis, name="custom_emoji")
    reaction = await bot.wait_for_reaction(['\N{SMILE}', custom_emoji], msg1)
    await bot.say("You responded with {}".format(reaction.emoji))

bot.run("token")