{ -6ren">
gpt4 book ai didi

javascript - 让 Discord Bot 链接另一个 channel

转载 作者:行者123 更新时间:2023-11-29 15:11:49 26 4
gpt4 key购买 nike

我有一个 Discord 机器人,我希望它能在某人使用触发词时将其引导至其他 channel 。我知道我可能缺少一两行代码来执行此操作。

bot.on("message", message => {
if(message.content.toLowerCase().indexOf('lists') > -1) {
message.channel.send(`Please visit #bt-updates for information on the current list information!`);
}
});

最佳答案

根据您对 HolyDragon 的回复,您似乎正在寻找如何在回复中为 channel 提供“蓝色链接”?

如果是这样,您需要#bt-updates 的 channel ID,并将其返回为

bot.on("message", message => {
if(message.content.toLowerCase() === 'lists') {
message.channel.send(`Please visit <#${id}> for information on the current list information!`);
}
});

关于javascript - 让 Discord Bot 链接另一个 channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53808832/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com