Discord. js: Как сделать так, чтобы бот DM всех участников сервера? - PullRequest
0 голосов
/ 09 июля 2020

Я хочу, чтобы мой бот отправил DM всем участникам моего сервера, но я не знаю, как go об этом. Если вы можете помочь, я буду признателен!

Discord. js v12

1 Ответ

1 голос
/ 09 июля 2020
message.guild.members.cache.forEach(member => { // Looping through each member of the guild.
    // Trying to send a message to the member.
    // This method might fail because of the member's privacy settings, so we're using .catch
    member.send("Hello, this is my message!").catch(e => console.error(`Couldn't DM member ${member.user.tag}`));
});
...