(discord.py)检测邮件中的某些关键字

时间:2018-03-31 03:09:48

标签: discord.py

我计划制作语法机器人以获得乐趣,我希望它能在消息中找到某些关键字,而不仅仅是询问它是否仅仅是关键字。我没有找到任何接近我想要的东西。帮助

1 个答案:

答案 0 :(得分:3)

假设您要检查发送的每条消息,可以使用普通Python检查message.content事件中on_message的关键字。下面的示例代码,代码将检查FOO是否在消息中。

@bot.event
async def on_message(message):
    if 'FOO' in message.content:
        print('Keyword found in message')
        # Do stuff here