我无法获得我的python不和谐机器人轮询命令发送.所有其他的响应命令工作,所以我不知道为什么民意调查不会发送



这是我的代码

@bot.command("poll")
async def poll(ctx, *args):
    # poll command:
    # !poll event_name event_date
    event_name = args[0]
    event_date = args[1]
    # retrieving the 'events' channel
    # sending the poll
    message = await ctx.send(f"@everyone Will you come to the **{event_name}** event the **{event_date}**?")
    # adding reactions to the poll
    await message.add_reaction('U00002705')
    await message.add_reaction('U0000274C')

我一直得到一个名为

的错误代码
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: IndexError: tuple index out of range

和我不知道如何让我的代码工作

我一直在遵循一个教程,由于某种原因,我的代码不能与它一起工作。我一直得到discord.ext.commands.errors.CommandInvokeError: Command raised an exception: IndexError: tuple index out of range错误消息

https://media.discordapp.net/attachments/1019539306777415712/1039502797420376074/25f07d49ecf5de59.png你需要给一个参数,它会工作,但你会得到未知的表情错误,因为你没有使用 in unicode


    await message.add_reaction('U00002705')

使用(‘ U00002705)

相关内容

  • 没有找到相关文章

最新更新