Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

This only picks up when the actual bot gets updated and not when other users update

client.on('guildMemberUpdate' ,(oldMember,newMember) => {
    console.log(oldMember['_roles'])
    console.log(newMember['_roles'])
});
question from:https://stackoverflow.com/questions/65945649/guildmemberupdate-event-only-occurs-when-bot-gets-updated

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

https://discordjs.guide/popular-topics/intents.html

Read through this page - You need to use intents when connecting to the gateway

so

const client = new Discord.Client({ ws: { intents: Discord.Intents.ALL } })

And enable intents on your application's Page (https://i.imgur.com/XtKjFyY.png) enable both.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...