如何检查消息是否通过特定频道发送。频道 ID discord.py?

时间:2021-07-07 20:59:54

标签: discord discord.py channel

所以我正在为朋友编写一个 Discord 机器人,我需要查看消息是否是在特定频道中发送的。 我尝试了一些事情,问了一些人,并寻找答案,但我找不到任何答案。 这是我得到的最接近的结果,我尝试更改了一些对象:

if message.channelID == ('#858884357271322634'):
  await message.channel.send ('I checked and verified the channel.')

1 个答案:

答案 0 :(得分:0)

你的支票没有意义,没有这样的message.channelID

只需将 message.channel.id 与您想要的 ID 进行比较并正确插入即可。

简单示例:

if message.channel.id == 858884357271322634:
    await message.channel.send("I checked and verified the channel.")