PNV | Cam
PNV | Cam
DIAdiscord.js - Imagine an app
Created by PNV | Cam on 7/28/2024 in #djs-questions
Cache of GuildMembers
Hi, how long does it take for the bot to delete members from cache? For get some full members of some roles i put this code in 'ready' events. When bot starts, guild.members.size returned 100% memberCount but some time latter (about half day), it returns only 20-30% of memberCount. Is there any way to keep the cache always full. I just only want to get full members of some roles at anytime more and than that the presence of the member
const guild = await client.guilds.fetch({ guild: client.config.guildId, force: true, cache: true })
await guild.members.fetch({ cache: true, force: true, withPresences: true })
const guild = await client.guilds.fetch({ guild: client.config.guildId, force: true, cache: true })
await guild.members.fetch({ cache: true, force: true, withPresences: true })
Client Options:
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildEmojisAndStickers
], partials: [
Partials.Message,
Partials.Reaction,
Partials.Channel,
Partials.ThreadMember
],
})
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildEmojisAndStickers
], partials: [
Partials.Message,
Partials.Reaction,
Partials.Channel,
Partials.ThreadMember
],
})
14 replies
DIAdiscord.js - Imagine an app
Created by PNV | Cam on 9/21/2022 in #djs-questions
[DiscordAPIError] Unknown interaction (MessageButton v13.6.0)
It happens when i use discord button and it respones more than 3s, can i fix that?
7 replies
DIAdiscord.js - Imagine an app
Created by PNV | Cam on 9/19/2022 in #djs-questions
Is there a event for roles' name change? (v13.6.0)
.
4 replies