You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to fetch all members of a very large guild but i can't find a way to bypass the GuildMembersManager.fetch() 10k members limit.
I found a lot of solutions on internet but none of them work.
If any of you have any advices on how to do this, I'll be grateful
code exemple of basic fetch with normal 10k limit
client.on('ready',async()=>{console.log(`seflbot is ready!`);constguild=client.guilds.cache.get(guildId);console.log(`${guild.memberCount} Member on the server`);constfetchedMembers=awaitguild.members.fetch();console.log(`${fetchedMembers.size} Member fetched`)})
result:
seflbot is ready!
171071 Member on the server
9999 Member fetched
Ideal solution or implementation
A method or indication on how to fetch more than 10k members ?
Alternative solutions or implementations
No response
Other context
PS: Not really a feature but no other options
The text was updated successfully, but these errors were encountered:
Which package is the feature request for?
The core library
Feature
I want to fetch all members of a very large guild but i can't find a way to bypass the GuildMembersManager.fetch() 10k members limit.
I found a lot of solutions on internet but none of them work.
If any of you have any advices on how to do this, I'll be grateful
code exemple of basic fetch with normal 10k limit
result:
Ideal solution or implementation
A method or indication on how to fetch more than 10k members ?
Alternative solutions or implementations
No response
Other context
PS: Not really a feature but no other options
The text was updated successfully, but these errors were encountered: