Discord.js已将消息发送到服务器中的所有成员?

时间:2020-06-05 03:43:09

标签: javascript discord discord.js

Discord.js版本:11.4.2

向服务器Hello中的所有人发送消息

if(message.content === '!Hello'){
 message.sentall("Hello")
}

1 个答案:

答案 0 :(得分:1)

由于您正在使用Discord.js v11,所以我想这就是您所需要的:

const guild = client.guilds.get("YourGuildID");
guild.members.forEach(member => {
    member.send("YourMessageToSend");
});

请确保将YourGuildID替换为您要向其发送消息的公会的ID,并使用YourMessageToSend进行相同的操作,但这次要替换为您要发送的消息。 / p>