我想知道是否有一种方法可以检查是否有人使用Discord.py对特定表情符号做出了反应。
答案 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")