YourPalLex
YourPalLex
DIAdiscord.js - Imagine an app
Created by YourPalLex on 3/10/2025 in #djs-questions
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');
}
});
6 replies