JavaScript
JavaScript
DIAdiscord.js - Imagine an app
Created by JavaScript on 3/15/2025 in #djs-questions
My bot does not detect dm messages
Partials.Channel,
Partials.Channel,
i added and it was fixxed
10 replies
DIAdiscord.js - Imagine an app
Created by JavaScript on 3/15/2025 in #djs-questions
My bot does not detect dm messages
I am developing a big bot, I need it
10 replies
DIAdiscord.js - Imagine an app
Created by JavaScript on 3/15/2025 in #djs-questions
My bot does not detect dm messages
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildBans,
GatewayIntentBits.GuildEmojisAndStickers,
GatewayIntentBits.GuildIntegrations,
GatewayIntentBits.GuildInvites,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildMessageTyping,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildScheduledEvents,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildWebhooks,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.DirectMessageReactions,
GatewayIntentBits.MessageContent,
],
partials: [
Partials.User,
Partials.Message,
Partials.GuildMember,
Partials.ThreadMember,
],
});
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildBans,
GatewayIntentBits.GuildEmojisAndStickers,
GatewayIntentBits.GuildIntegrations,
GatewayIntentBits.GuildInvites,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.GuildMessageTyping,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildPresences,
GatewayIntentBits.GuildScheduledEvents,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildWebhooks,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.DirectMessageTyping,
GatewayIntentBits.DirectMessageReactions,
GatewayIntentBits.MessageContent,
],
partials: [
Partials.User,
Partials.Message,
Partials.GuildMember,
Partials.ThreadMember,
],
});
i use this but not working
10 replies