在Discord.js中检测到添加的特定角色时,删除另一个角色

时间:2020-10-16 17:56:36

标签: javascript discord discord.js

我想知道是否有人可以从我当前的机器人中使用Discord.js代码段来帮助我。

我希望在下面的这些代码行中添加以删除角色---基本上,我的机器人正在检测何时发生了特定于要添加的角色的角色更改。然后,一旦发生这种情况,它将剥离其中一个角色-如果有意义的话?

if
  (!oldMem.roles.find(x => x.name === "Inactive") && newMem.roles.find(x => x.name === "Inactive"))
      client.channels.get("547932494259814410").send(`:bell: ${newMem} THere is a new inactive <@&662373687726440461>...`);

我要从用户身上剥离的角色是角色ID 560860499894337538-尽管并不是每个人都具有该角色,所以我希望可以在没有BOT错误的情况下做到这一点。

1 个答案:

答案 0 :(得分:0)

我添加的代码将尝试找到要删除的角色,如果找到,则将其删除。

if (!oldMem.roles.find(x => x.name === "Inactive") && newMem.roles.find(x => x.name === "Inactive")) {
    client.channels.get("547932494259814410").send(`:bell: ${newMem} There is a new inactive <@&662373687726440461>...`);

    const role = message.member.roles.get('560860499894337538');

    if (role) newMem.roles.remove(role).catch(console.log);
}