need help, my bot seems to turn on & go online but no response from it with anything.

import { Client, Events, GatewayIntentBits } from 'discord.js';

const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.on(Events.ClientReady, readyClient => {
console.log(`Logged in as ${readyClient.user.tag}!`);
});

client.on(Events.MessageCreate, async message => {
if (!message.content.startsWith('SWQ!')) return;

if (message.content === 'SWQ!ping') {
await message.reply('Pong!');
}

if (message.content === 'SWQ!help') {
await message.reply('# COMMANDS\n- quotes -- generates a random Star Wars Quote\n- help -- displays **this current menu**\n- name -- Shows a random name from the Star Wars Universe\n- names -- shows all the names from the Star Wars Universe\n- invite - Invite the bot to your server\n- vote - vote for the bot');
}
});
import { Client, Events, GatewayIntentBits } from 'discord.js';

const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.on(Events.ClientReady, readyClient => {
console.log(`Logged in as ${readyClient.user.tag}!`);
});

client.on(Events.MessageCreate, async message => {
if (!message.content.startsWith('SWQ!')) return;

if (message.content === 'SWQ!ping') {
await message.reply('Pong!');
}

if (message.content === 'SWQ!help') {
await message.reply('# COMMANDS\n- quotes -- generates a random Star Wars Quote\n- help -- displays **this current menu**\n- name -- Shows a random name from the Star Wars Universe\n- names -- shows all the names from the Star Wars Universe\n- invite - Invite the bot to your server\n- vote - vote for the bot');
}
});
4 Replies
d.js toolkit
d.js toolkit4w ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - 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! - Marked as resolved by OP
Yareaj
Yareaj4w ago
You need to add the content intent, both on your client init and on the developer portal
Mark
Mark4w ago
and GuildMessages intent in addition to the MessageContent intent
YourPalLex
YourPalLexOP4w ago
thank you so much!! you too, thank you

Did you find this page helpful?