如何在Discord Bot消息中“链接”喜欢提及的频道?

时间:2019-03-21 14:58:31

标签: discord discord.js

我希望我们的Discord Bot提及一个特定的频道,并使其可点击。我知道提到您使用用户ID的用户。我确实有频道ID,只是不确定如何实现它。

2 个答案:

答案 0 :(得分:1)

很简单:^)

'%d-%m-%Y'

答案 1 :(得分:1)

您只需要执行以下操作:

message.channel.send('Please take a look at this Discord Server channel <#CHANNELID>')

或者如果您从漫游器获得频道ID

const channel = message.guild.channels.find(channel => channel.name === 'Name of the channel');
message.channel.send(`Please take a look at this Discord Server channel <#${channel.id}>`)

然后可单击该屏幕截图,如以下屏幕截图所示:

Overview how a clickable channel looks like