如何使用discord.py创建警告命令?

时间:2018-03-11 03:33:10

标签: python warnings discord discord.py

我尝试了多种方式,例如发送直接信息发送警告,但我找不到正确的脚本,并且我尝试过使用该文档但我无法做到找到任何有用的信息,我想知道我是否能得到一些帮助..

1 个答案:

答案 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')