#Can help me to create my bot pls
30 messages · Page 1 of 1 (latest)
- What's your exact discord.js
npm list discord.jsand nodenode -vversion? - Not a discord.js issue? Check out #1081585952654360687.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
Suggestion for @silent hamlet:
Home: Introduction - Before you begin...
read more
What should I do?
did you read the what i sent?
I tried yes
Should I put it where?
const { Client, GatewayIntentBits } = require('discord.js');
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
],
});
you already added them
save your code and run your bot
their code is correct
thats what he's supposed to do
in which file
in your main index.js
Import it from discord.js
?
const Discord = require("discord.js");
const config = require("./config.json");
const client = new Discord.Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
],
});
client.login(config.BOT_TOKEN);