mrmBot-Matrix/commands/general/help.js

23 lines
1.3 KiB
JavaScript

// import { Constants } from "oceanic.js";
// import database from "../../utils/database.js";
// import * as collections from "../../utils/collections.js";
// import { random } from "../../utils/misc.js";
// import paginator from "../../utils/pagination/pagination.js";
// import * as help from "../../utils/help.js";
// import Command from "../../classes/command.js";
// const tips = ["You can change the bot's prefix using the prefix command.", "Image commands also work with images previously posted in that channel.", "You can use the tags commands to save things for later use.", "You can visit https://esmbot.net/help.html for a web version of this command list.", "You can view a command's aliases by putting the command name after the help command (e.g. help image).", "Parameters wrapped in [] are required, while parameters wrapped in {} are optional.", "esmBot is hosted and paid for completely out-of-pocket by the main developer. If you want to support development, please consider donating! https://patreon.com/TheEssem"];
class HelpCommand extends Command {
async run() {
return "https://esmbot.net/help.html"
}
static description = "Gets a list of commands";
static aliases = ["commands"];
static arguments = ["{command}"];
static slashAllowed = false;
}
export default HelpCommand;