Scraping users custom status #282
-
Hi, I need to scrap users custom status to give them a specific role under certain conditions (related to their custom status message). I tried many events and it works except events related to members (guildMemberUpdate, presenceUpdate and userUpdate). Did I missed something ? Do the way we listen these events work in a different way ? client.on('ready', async () => {
console.log(`${client.user.username} is ready!`);
})// Working
client.on('userUpdate', async () => {
console.log(`test`);
})// Not working |
Beta Was this translation helpful? Give feedback.
Answered by
aiko-chan-ai
Aug 29, 2022
Replies: 1 comment 5 replies
-
you need to fetch members in the guild :v |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
Nefers12
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you need to fetch members in the guild :v