#Discord Intents
7 messages · Page 1 of 1 (latest)
• What's your exact discord.js npm list discord.js and node node -v version?
• Post the full error stack trace, not just the top part!
• Show your code!
• Explain what exactly your issue is.
• Not a discord.js issue? Check out #useful-servers.
if you are on discord.js v14+ :
const { Client, GatewayIntentBits } = require('discord.js')
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMembers,
]
})
You can visit the guide too.
https://discordjs.guide/popular-topics/intents.html#enabling-intents
I'm on V13 still :(
you can still use GatewayIntentBits
not from the discord.js package itself
discord-api-types iirc