Discord.py如何识别特定人

时间:2019-04-05 07:17:24

标签: python-3.x

我编写了此代码,以便可以通过Discord机器人发送消息 但是最近很多人用它绕过了规则。 我该如何做到,只有我才能发送被重定向的消息,而不能发送其他任何人的消息?

async def on_message(message):
      await client.process_commands(message)
      if message.server is None and message.author != client.user:
          channel = client.get_channel('CHANNEL_ID')        
          await client.send_message(channel, f'{message.content}')

我希望它仅在我将消息发送到dm而不是其他任何人的情况下才将消息发送到定义的通道

0 个答案:

没有答案