是否有向个人信息发送消息的命令? [英] Is there a command to send private message to all members of a group?

查看:107
本文介绍了是否有向个人信息发送消息的命令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有任何方法可以使命令使用discord.js将私有消息发送给discord组的所有成员?

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

示例: / private TEST

此消息通过私人聊天而不是频道聊天发送给组中的每个人。

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

推荐答案

您可以通过 Guild.members

当您收到以 / private ,其余部分则通过使用 Guild.members.forEach()

这是一个快速示例:

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 command 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 :)

这篇关于是否有向个人信息发送消息的命令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆