Home > Enterprise >  Is there any way i can fix my discord bot, which i`m creating discord.js
Is there any way i can fix my discord bot, which i`m creating discord.js

Time:01-14

I am creating a bot using guide by Discord.js, however after like 3 or sometimes 3 commands the bot stops working and i get discord message i have tried to restart it many times but after sometime it just stop working again and again

const fs = require('node:fs');
const path = require('node:path')
const { Client, Events, GatewayIntentBits, Collection ,ActionRowBuilder,EmbedBuilder, StringSelectMenuBuilder } = require('discord.js');
const { token } = require('./config.json');

const client = new Client({ intents: [GatewayIntentBits.Guilds] });
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`);
    }
}


client.once(Events.ClientReady, () => {
    console.log('Ready!');
})

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

    if (interaction.commandName === 'ping') {
        const row = new ActionRowBuilder()
            .addComponents(
                new StringSelectMenuBuilder()
                    .setCustomId('select')
                    .setPlaceholder('Nothing selected')
            );
            const embed = new EmbedBuilder()
            .setColor(0x0099FF)
            .setTitle('pong')
            .setDescription('Some description here')
            .setImage('https://media.istockphoto.com/id/1310339617/vector/ping-pong-balls-isolated-vector-illustration.jpg?s=612x612&w=0&k=20&c=sHlz5sbJrymDo7vfTQIuaj4lbmwlvAhVE7Uk_631ZA8=')

        await interaction.reply({ content: 'Pong!', ephemeral: true, embeds: [embed]});
    }
});
//======================================================================================================================

client.on(Events.InteractionCreate, async interaction => {
    if (!interaction.isChatInputCommand || 
        interaction.isButton() ||
        interaction.isModalSubmit()) 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);
        await interaction.reply({content: 'There was an error while executing this command!', ephemeral: true});
    }
    console.log(interaction);
});
client.login(token);

Error i get in terminal

I wanted this bot to continue to execute commands as long as it's up and running

CodePudding user response:

Yes the problem is that you cant reply to a slash command more then once in discords api so instead you should use

interaction.channel.send()

or

interaction.editReply()

CodePudding user response:

This is a common error in Discord.JS that occurs when you already replied to an interaction and you attempt to reply again.

From the discord.js discord server:

You have already replied to the interaction.

• Use .followUp() to send a new message

• If you deferred reply it's better to use .editReply()

• Responding to slash commands / buttons / select menus

To fix this error, you can use .followUp() to send another message to the channel or .editReply() to edit the reply as shown above.

You can see the documentation on a command interaction here

  • Related