discord.js |从成员中删除角色并将该角色授予另一个成员

时间:2021-03-18 19:14:29

标签: javascript node.js discord discord.js

我正在尝试从一个人身上删除一个角色,并将该角色授予发起命令的人。

它第一次起作用,当人 A 这样做时。但是当其他人第二次尝试调用该命令时,代码找不到人 A。任何帮助都会很酷。

//Just some startup stuff
const { error, timeStamp } = require('console'),
client = new Discord.Client(),
client.login('How About No?')

var command, role, person

//Check if it's alive
client.once('ready', () => {
    console.log(`${client.user.tag} is online`)
})

//When a message is sent
client.on('message', message => {

command = message.content.toLowerCase()

if(command === 'test' && message.guild.id === 'the server ID'){

    role = message.guild.roles.cache.find(r => r.id === 'the role ID') //Find the correct role

    person = role.members.first()
    /* I can use ".first()" here, because there's never supposed to be more than one person with this role.
    The problem is here. On the second run, it outputs "undefined" even though a person has the role. */

    //If a person has the role, remove it from them.
    if(typeof person !== 'undefined') person.roles.remove(role).catch(error => console.log(error))

    //Give the role
    person = message.member
    person.roles.add(role).catch(error => console.log(error))
}

})

1 个答案:

答案 0 :(得分:0)

有时会发生这种情况,因为缓存更新速度不够快。

您可以通过 API 请求fetch 代替角色。

message.guild.roles.fetch('the role ID',true,true)