Shdw Takashi
banner
shdwtakashi.bsky.social
Shdw Takashi
@shdwtakashi.bsky.social
Fellow Developer Boi 🦝
LETS TALK, I'm developing a Bot similar to this style of work and I would love to have the chance to work with you on this project. Keep me in mind 🙏
December 16, 2024 at 7:21 PM
Did we develop this yet? I'll be glad of some assistance 🦝
December 16, 2024 at 7:16 PM
I relate to this on a HEAVY level.
December 16, 2024 at 7:00 PM
Let me adjust the README.md for those who are confused on why there's no instructions 😅
December 16, 2024 at 5:50 PM
Anyways...Good luck! Don't pull your hair out 😂
December 16, 2024 at 5:26 PM
Here's another example for multiple intents:

Const { Client } = require('discord.js');
Const client = new client ({
Intents: [
// Your intents
"Discord.Intents.FLAGS.GUILD_MESSAGES",
"Discord.Intents.FLAGS.GUILD_MEMBERS"
]
});
December 16, 2024 at 5:26 PM
Your code should have this as an example:

Const { Client } = require('discord.js');
Const client = new client ({
Intents: [
// Your intents
"GUILD_MESSAGES",
"GUILD_MEMBERS"
]
});
December 16, 2024 at 5:26 PM
Probably late but it's a simple fix. Maybe you have the wrong intents or you tried creating a client instance without specifying the requires intents.

You should check your privileged gateway intents in the discord developer portal and select the intents that are required for your Bot
December 16, 2024 at 5:26 PM