如果我的机器人检测到关键字,我想让我的机器人编辑消息,但我不确定如何编辑消息。
我浏览了文档,但似乎无法弄清楚。我在 python 3.6 中使用 discord.py。
这是代码:
@bot.event
async def on_message(message):
if 'test' in message.content:
await edit(message, "testtest")
这是错误:
File "testthing.py", line 67, in on_message
await edit(message, "test")
NameError: name 'edit' is not defined
如果消息包含单词 test,我希望机器人将消息编辑为“testtest”,但我只是收到一个错误。
ITMISS
哔哔one
繁星coding
相关分类