This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ShareX-Upload-Server/bot/commands/help.js
2021-08-18 00:12:37 -07:00

13 lines
458 B
JavaScript

module.exports = {
command: 'help',
description: 'Get info on commands',
syntax: '{PREFIX}help',
execute: async (_this, msg) => {
const cmds = [];
_this.commands.map(cmd => {
cmds.push(`[${cmd.command}]: ${cmd.syntax.replace('{PREFIX}', _this.c.prefix)} | ${cmd.description}`);
});
msg.channel.createMessage(`Here is a list of available commands\n\`\`\`ini\n${cmds.join('\n')}\n\`\`\``);
},
};