Команда ниже ответит сообщением, а затем дождется реакции :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")