我如何只收听特定频道中的消息?

时间:2018-08-14 14:05:15

标签: python discord discord.py

我想做一个中继机器人。

所以我需要在特定的频道中收听消息并将其发送给另一个。当前代码是:

import discord

client = discord.Client()

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content.startswith(''):
        msg = message.content
        await client.send_message(client.get_channel('myawesomechannelid'), msg)

@client.event
async def on_ready():
    print('Logged in as')
    print(client.user.name)
    print(client.user.id)
    print('------')

client.run('myawesometoken')

它可以工作,但是如果我在服务器上输入任何频道,它将始终将其发送到另一台服务器,如果在我输入其他内容,则将在另一台服务器上将其发送到该服务器...

试图做一些奇怪的事情

async def on_message(message.channel.id == '478903041182138371'):

但是它没有用...而且我没有找到其他解决方案...

0 个答案:

没有答案