我尝试了多种方式,例如发送直接信息发送警告,但我找不到正确的脚本,并且我尝试过使用该文档但我无法做到找到任何有用的信息,我想知道我是否能得到一些帮助..
答案 0 :(得分:2)
传递Client.send_message
User
对象将允许您向该用户发送消息。 (在实验重写分支上,它已被User.send
取代)下面是一个基本示例
@client.event
async def on_message(message):
author = message.author
if author == client.user:
return
if 'password' in message.content:
await client.send_message(author, 'Do not say password')