首页 > 解决方案 > 如何检查消息的反应

问题描述

我试图用我的机器人做一些命令,比如反应角色和帮助命令

它是这样的:

@bot.command()
async def help(ctx):
  em = discord.Embed(title="HELP",#etc
  #here is all about my help command
  my_msg = await ctx.send(embed=em)
  my_msg.add_reaction("#arrow-emoji)
  my_msg.add_reaction(#more arrow emoji
#...
  if #ctx.author react it:
    my_msg.edit(#page n)

那么我该怎么做呢?

标签: pythonpython-3.xdiscord.py

解决方案


试试Discord Pretty Help,它是为你想要的目的而制作的!


推荐阅读