Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

265
Vistas
My bot is responding to all prefixes and I don't know why

I am using the latest node.js and discord.js versions and I am coding on VSC. My bot started responding to all prefixes and I don't know why. The code I have currently:

const Discord = require('discord.js');
const client = new Discord.Client();
 
const fs = require('fs');

client.commands = new Discord.Collection();

const commandFiles = fs.readdirSync('./commands/').filter(file => file.endsWith('.js'));
for(const file of commandFiles){
    const command = require(`./commands/${file }`);

    client.commands.set(command.name, command)
}

const PREFIX = '$';
 
 
client.on('ready', () => {
    console.log('updated');
})

client.on('message', message => {
 
    const args = message.content.substring(PREFIX.length).split(" ");

    switch (args[0]) {
        case 'ping':
            message.channel.send('pong!');
            break;
    }
});
 
        client.login(token);

However, with this code in mind, the bot still responds to any prefix. In the image below, I sent the ping command with various random letters and symbols in all at the same time. The bot responded pong to all of them.

Image of the bot not working

not sure what is wrong as I am still new to discord.js but I cannot figure it out.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Maybe you can check if it's a command before.

client.on('message', message => {
  
  const isCommand = message.content.substring(0,PREFIX.length) === PREFIX
  if(isCommand){
    const args = message.content.substring(PREFIX.length).split(" ");
    switch (args[0]) {
        case 'ping':
            message.channel.send('pong!');
            break;
    }
  }
});
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda