仅对特定角色发表评论,而不是 dm

时间:2021-03-27 11:52:17

标签: discord.js

我希望评论仅在作者具有特定角色时才有效。我怎样才能做到这一点?另外,我不想在 dm's what is still working 中写评论。提前致谢! 亲切的问候

1 个答案:

答案 0 :(得分:0)

我不知道您所说的评论是什么意思,但要检查成员是否具有角色,请使用以下命令:

let role = message.guild.roles.cache.get("INSERT ROLE ID HERE");
if (!message.member.roles.cache.has(role.id)) return message.channel.send("You need the required role to use this!");

此外,只需检查 message.guild 是否为 null 以查看该命令是否正在 DM 中使用。