我想要这样,以便当我键入命令和消息时,它将把该消息转发到2台服务器中的通道,该bot与节点discord连接。
感谢:)
答案 0 :(得分:0)
您可以使用
var message = '[Message]';
bot.channels.get('[ChannelIDServer1]').send(message);
bot.channels.get('[ChannelIDServer2]').send(message);
要获取频道ID,只需右键单击频道->复制ID
如果您使用不同的名称命名客户,只需将bot
更改为您使用的名称。
const Discord = require('discord.js');
const bot = new Discord.Client();