所以我想发出一个命令,当我说一个已编程的关键字时,机器人可以响应句子中的一个单词
if message.content.upper().includes(‘keyword’)
答案 0 :(得分:1)
提醒您必须使用python3.5。
在安装了不和谐后:pip3 install --user discord.py
和getting 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
。