gpt4 book ai didi

python - 从嵌入的消息中获取内容?

转载 作者:行者123 更新时间:2023-12-04 08:04:03 27 4
gpt4 key购买 nike

所以我试图制作一个“退出提醒机器人”
但是disboard发送了一条我不明白如何使用我的自定义机器人阅读的消息...
这就是我所拥有的:但它仅用于纯文本。

@bot.event
async def on_message(message):
if "Check it on DISBOARD:" in message.content: #and message.author.id == 302050872383242240:
print("I see the bump!")
await message.add_reaction(emoji='⏱️')
print("counting now!")
await asyncio.sleep(7200)
print("sending reminder!")
await message.channel.send("Remember to bump the server!")

最佳答案

您需要检查嵌入的描述

@bot.event
async def on_message(message):
if message.author.bot and message.embeds:
if "Check it on DISBOARD:" in message.embeds[0].description: #and message.author.id == 302050872383242240:
print("I see the bump!")
await message.add_reaction(emoji='⏱️')
print("counting now!")
await asyncio.sleep(7200)
print("sending reminder!")
await message.channel.send("Remember to bump the server!")

关于python - 从嵌入的消息中获取内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66308498/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com