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

545
Vistas
How can I fix my help commands (discord.js)

Currently I am using node.js So I can't require a command and I am unable to find a folder code :

    module.exports = {
    name: 'cmds',
    description: 'Shows the commands.',
    aliases: 'commands,help',
    cooldown: 1000,
    execute(client, msg, args) {
        const prettyms = require('pretty-ms')
        const author = msg.author
        const authorMember = msg.member
        const user = msg.mentions.users.first()
        const userMember = msg.mentions.members.first()
        const authorOrUser = user || author
        const authorOrUserMember = userMember || authorMember
        const fs = require('fs')
        const { MessageEmbed } = require("discord.js")
        const embed = new MessageEmbed()
        function getCommand(cmd) {
            return client.commands.get(`${cmd}`)
        }
        for (const category of fs.readdirSync(`../commands`)) {
            for (const cmd of fs.readdirSync(`../${category}`)) {
                const command = require(`../${category}/${cmd}`)
                console.log(command.name)
            }
        }
        embed.setAuthor(`Commands : ${client.commands.size}`)
        embed.setDescription("`<> means required, () means optional and | means it is an alias of a command`")
        embed.setFooter(`Made by 3F1VE#2276`)
        embed.setTimestamp(Date.now())
        embed.setTitle(`Commands`)
        embed.setColor('RANDOM')
        msg.reply({ embeds: [embed] })
    }
}

The problem is I cannot find a way to get the commands folder properly. Here are the files files

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

0

You would need to set the folder list wherever you fetch yhem on startup or fetch them everything in the command(not recommended)

const { readdirSync } = require("fs");
module.exports = (bot) => {
  readdirSync("./commands/").map((dir) => {
    const commands = readdirSync(`./commands/${dir}/`).map((cmd) => {
      let pull = require(`../commands/${dir}/${cmd}`);
      bot.commands.set(pull.name, pull);
      if (pull.aliases) {
        pull.aliases.map((p) => bot.aliases.set(p, pull));
      }
    });
  });
  console.log(`All commands loaded\(Quantity\:${bot.commands.size} \)`)
};

You can change the above provided code with minor changes to fetch the folders in the command itself

Please remember this is pseudo code and would need changes to fit your use case please don't expect it to work out of thr box

about 4 years ago · Juan Pablo Isaza Denunciar

0

Apparently I typed in the path wrong.

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