48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
const { Command } = require('../../../../interfaces/');
|
|
|
|
class HelpCommand extends Command {
|
|
|
|
constructor(client) {
|
|
|
|
super(client, {
|
|
name: 'help',
|
|
module: 'information',
|
|
description: 'Get help!',
|
|
showUsage: true
|
|
});
|
|
|
|
this.client = client;
|
|
|
|
|
|
}
|
|
|
|
async execute(message, { params }) {
|
|
|
|
const [ key ] = params;
|
|
let [ result ] = this.client.resolver.components(key, 'command');
|
|
if (!result) [ result ] = this.client.resolver.components(key, 'setting');
|
|
if (!result)
|
|
return await message.embed({
|
|
description: message.format('C_HELP_404', { component: key })
|
|
});
|
|
|
|
//let index = `${result.type.slice(0, 1).toUpperCase()}_${result.name.toUpperCase()}_HELP`;
|
|
return await message.embed({
|
|
description: message.format('C_HELP_TEMPLATE', {
|
|
desc: message.format(result.description),
|
|
component: result.name.toUpperCase(),
|
|
text: message.format(result.example)
|
|
})//,
|
|
// fields: [
|
|
// {
|
|
// name: '',
|
|
// value: message.format(result.examples)
|
|
// }
|
|
// ]
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = HelpCommand; |