最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is there a command to send private message to all members of a group? - Stack Overflow

programmeradmin2浏览0评论

Is there any way to make a mand send a private message to all members of the discord group using discord.js?

Exemple: /private TEST

This message is sent to everyone in the group in private chat instead of channel chat.

Is there any way to make a mand send a private message to all members of the discord group using discord.js?

Exemple: /private TEST

This message is sent to everyone in the group in private chat instead of channel chat.

Share Improve this question edited Aug 22, 2018 at 21:45 Federico Grandi 6,7865 gold badges33 silver badges51 bronze badges asked Aug 6, 2018 at 10:15 Renan RkRenan Rk 571 gold badge1 silver badge4 bronze badges 2
  • 2 By "group" you mean guild or DM group? Because bots can't join DM groups, unless they're self-bots, but that could get you banned from Discord – Federico Grandi Commented Aug 6, 2018 at 11:32
  • 1 By guild example "bot.on('guildMemberAdd', member => { member.send("Olá, bem-vindo ao discord do StealMC."); " prntscr./kfabc0 This code sends this message privately to all who enter the server, I want a mand that sends message by private to all the members of the server the same function as that, the difference would be the mand I could type / test MESSAGE THAT EVERYONE GO RECEIVE and everyone on the server will receive this message in private. Sorry, I'm Brazilian and I'm using the translator. – Renan Rk Commented Aug 6, 2018 at 12:34
Add a ment  | 

2 Answers 2

Reset to default 5

You can iterate through Guild.members.
When you receive a message that starts with /private, you take the rest and send it to every member of the guild by using Guild.members.forEach().
Here's a quick example:

client.on('message', msg => {
  if (msg.guild && msg.content.startsWith('/private')) {
    let text = msg.content.slice('/private'.length); // cuts off the /private part
    msg.guild.members.forEach(member => {
      if (member.id != client.user.id && !member.user.bot) member.send(text);
    });
  }
});

This is just a basic implementation, you can obviously use this concept with your mand checks or modify that by adding additional text and so on.

Hope this solves the problem for you, let me know if you have any further questions :)

The updated code for discord.js v12 is just adding cache to the forEach.

client.on('message', msg => {
  if (msg.guild && msg.content.startsWith('/private')) {
    let text = msg.content.slice('/private'.length); // cuts off the /private part
    msg.guild.members.cache.forEach(member => {
      if (member.id != client.user.id && !member.user.bot) member.send(text);
    });
  }
});

发布评论

评论列表(0)

  1. 暂无评论