简体   繁体   English

Discord.py message.reaction 嵌入

[英]Discord.py message.reaction embed

I'm trying to do that my bot reacts to a embed that I send and it doesn't work.我正在尝试让我的机器人对我发送的嵌入做出反应,但它不起作用。

The code is that:代码是:

ruleta_image = discord.Embed(title="RULETA️", description="Hola", colour=discord.Colour.gold())
ruleta_image.set_image(url="https://iosmac.es/wp-content/uploads/2019/08/juegos-de-apuestas-portada.jpg")
first_run = True<
await si.send(embed=ruleta_image)
while True:
    if first_run:
        first_run = False
        reactmoji = ["🟢", "🔴", "⚫", "🇳"]

        for react in reactmoji:
            await message.add_reaction(react)

The problem is that:问题是:

    await message.add_reaction(react)
NameError: name 'message' is not defined

The error states pretty clear that didn't define message , to define it错误状态很清楚,没有定义message ,定义它

message = await si.send(embed=ruleta_image)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM