如果用户具有特定角色,discord.js 机器人会回复

Posted

技术标签:

【中文标题】如果用户具有特定角色,discord.js 机器人会回复【英文标题】:discord.js bot reply if user has a specific role 【发布时间】:2021-10-08 10:06:12 【问题描述】:

我需要我的机器人回复特定角色,如果用户没有该角色,机器人回复另一条消息“不允许执行此命令”这是我的代码:

client.on("message", (message) => 
    // Command handler, seen previously
    if (message.content === "#سرقة") 
        let frole = message.guild.roles.cache.get("861336755197575178");

        if (frole) return message.channel.send("u are not allowed to use this command");

        message.reply("يرجى تحديد نوع السرقة");
        message.channel.send(" -بقالة");
        message.channel.send("-محل ملابس");
        message.channel.send("-البنك المركزي");
    
);

【问题讨论】:

*** 不是代码编写服务。您是否尝试过寻找方法来检查成员是否具有特定角色? 【参考方案1】:

您可以使用GuildMemberRoleManager#cache.has() 来确定@​​987654323@ 是否有Role


client.on("message", (message) => 
    if (message.content === "#سرقة") 
        if (message.member.roles.cache.has("861336755197575178")) 
            message.reply("You are allowed to use this command.");
         else 
            message.channel.send("You are not allowed to use this command.");
        
    
);

【讨论】:

以上是关于如果用户具有特定角色,discord.js 机器人会回复的主要内容,如果未能解决你的问题,请参考以下文章

Discord.js 获取所有具有特定角色的成员

Discord.js 将特定角色添加到数组

检查提到的用户是不是在 discord.js 中具有角色

Discord.js :将特定服务器上的角色添加到 DM 机器人的用户

无法添加角色,Discord.js

Discord.js,通过数组中的 ID 查找用户是不是具有角色