我正在尝试使用我的机器人执行一些命令,例如反应角色和帮助命令
它是这样的:
@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)
那我该怎么做呢?