Hey sorry to bother you again. I was wondering if you could help me with something. I am trying to change the help command. I want to remove the descriptions and show just the command names like this: ban, unban, mute etc. I am having a hard time figuring that out.
This is what I have atm:
`
const Discord = require('discord.js');
exports.run = (client, message, args, level) => {
var time = Date.now();
exports.help = {
name: 'help',
category: 'System',
description: 'Displays all the available commands for your permission level.',
usage: 'help\nhelp [command]'
};
`
I can't figure out what I am doing wrong cause it outputs this:
Hey sorry to bother you again. I was wondering if you could help me with something. I am trying to change the help command. I want to remove the descriptions and show just the command names like this:
ban, unban, mute
etc. I am having a hard time figuring that out.This is what I have atm: ` const Discord = require('discord.js');
exports.run = (client, message, args, level) => { var time = Date.now();
};
exports.conf = { enabled: true, guildOnly: false, aliases: ['h', 'halp'], permLevel: 0 };
exports.help = { name: 'help', category: 'System', description: 'Displays all the available commands for your permission level.', usage: 'help\nhelp [command]' }; `
I can't figure out what I am doing wrong cause it outputs this: