Wiktor.
Wiktor.
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
sorry
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
oh lmaoo
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
Not exactly sure what you mean
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
And I do have all the files
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
No description
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
I have read what it does
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
I copied and pasted the deploy-commands file
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
I get this type of error when I run it
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
No description
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
Oh thanks
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
How do I deploy commands?
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
Doesn't even detect the /ping command
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
If anyone gives me an answer please ping me :)
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
Here is the code, if anyone helps I'd be very thankful haha
21 replies
DIAdiscord.js - Imagine an app
Created by Wiktor. on 9/29/2023 in #djs-questions
Command Handler Not Working??
const { Client, Collection, Events, GatewayIntentBits } = require('discord.js');
const { token } = require('./config.json');
//command files
const client = new Client({ intents: [GatewayIntentBits.Guilds] });
const fs = require('node:fs');
const path = require('node:path');


client.commands = new Collection();
const commandsPath = path.join(__dirname, 'commands');
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));

for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
if ('data' in command && 'execute' in command) {
client.commands.set(command.data.name, command);
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}

client.on(Events.InteractionCreate, async interaction => {
if (!interaction.isChatInputCommand()) return;

const command = interaction.client.commands.get(interaction.commandName);

if (!command) {
console.error(`No command matching ${interaction.commandName} was found.`);
return;
}

try {
await command.execute(interaction);
} catch (error) {
console.error(error);
if (interaction.replied || interaction.deferred) {
await interaction.followUp({ content: 'There was an error while executing this command!', ephemeral: true });
} else {
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
}
}
});

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


client.login(token);
const { Client, Collection, Events, GatewayIntentBits } = require('discord.js');
const { token } = require('./config.json');
//command files
const client = new Client({ intents: [GatewayIntentBits.Guilds] });
const fs = require('node:fs');
const path = require('node:path');


client.commands = new Collection();
const commandsPath = path.join(__dirname, 'commands');
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));

for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
if ('data' in command && 'execute' in command) {
client.commands.set(command.data.name, command);
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}

client.on(Events.InteractionCreate, async interaction => {
if (!interaction.isChatInputCommand()) return;

const command = interaction.client.commands.get(interaction.commandName);

if (!command) {
console.error(`No command matching ${interaction.commandName} was found.`);
return;
}

try {
await command.execute(interaction);
} catch (error) {
console.error(error);
if (interaction.replied || interaction.deferred) {
await interaction.followUp({ content: 'There was an error while executing this command!', ephemeral: true });
} else {
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
}
}
});

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


client.login(token);
21 replies