如果使用者在讯息中说出关键字,如何使不和谐的bot回应使用者

时间:2018-12-22 01:59:59

标签: python-3.x discord.py

所以我想发出一个命令,当我说一个已编程的关键字时,机器人可以响应句子中的一个单词

if message.content.upper().includes(‘keyword’)

1 个答案:

答案 0 :(得分:1)

提醒您必须使用python3.5。

在安装了不和谐后:pip3 install --user discord.pygetting the token for your bot

from discord import Client

bot = Client()

# change keyword here
keyword = "RESPOND"

@bot.event
async def on_message(message):
      message_text = message.content.strip().upper()
      if keyword in message_text:
            # do something here, change to whatever you want
            await bot.send_message(message.channel, "'{}' was said".format(keyword))

bot.run("TOKEN")

如果您的机器人使用commands,则可以这样初始化它:

from discord.ext import commands
bot = commands.Bot(command_prefix=commands.when_mentioned)

请注意,您还必须在on_message的末尾加上process_commands