const { EmbedBuilder } = require("discord.js"); exports.name = "help"; exports.description = ":scroll: Shows this message. (this bot is a crude imitation of tbolt's better bot :P)"; exports.usage = "< { let embed = new EmbedBuilder(); embed.setTitle("Commands Helper"); if (args[0]) { const cmd = client.commands.get(args[0]); if (!cmd) return message.channel.send( "Command not found, try `< { if (cmd.hidden && message.author.id != client.ownerID) return; embed.addFields({ name: cmd.name, value: cmd.description, }); }); } embed.setColor(0x00ff00); message.channel.send({ embeds: [embed] }); };