#done
1 messages · Page 1 of 1 (latest)
so its weird
you should be getting at least something
can you send your code again without token xd
const { Client, Intents, MessageMentions: { USERS_PATTERN }} = require('discord.js')
include that in your code first
thatll fix it
you needed client and intents to be defined
const Discord = require('discord.js')
const client = new Client({
partials: ['MESSAGE', 'CHANNEL', 'REACTION'],
intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_VOICE_STATES, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.GUILD_MESSAGE_REACTIONS, Intents.FLAGS.DIRECT_MESSAGES, Intents.FLAGS.GUILD_MEMBERS],
makeCache: Discord.Options.cacheWithLimits({
MessageManager: 200,
PresenceManager: 0,
}),
})
client.once("ready", () => {
console.log("Droplet is now online!");
});
client.login("token");```
Add this line and it should work