Baphomet is the dedicated bot for nulloctet matrix
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/** * Example module * Copy this, replace the relevent parts, add it to the list in index.js */
let { AbstractModule } = require('./abstract');
class ExampleModule extends AbstractModule { constructor() { super( "Example", "Example tasks", "example" ); this.helpAndUsage = `Usage: example <command>
...`;
this.hidden = false; //default value
this.needGlobalConfig = false; // default value
this.needConfig = false; // default value
this.defaultCommand = 'search'; // name of the command to call when no recognized command name is present
}
/* Commands * All methods starting with cmd_ will be parsed at initialization to expose those methods as commdands to the user */
/** * Processed when !example blah is processed * * @param {...any} args the individual words passed after the command */ cmd_blah(...args) { return "Bla blah bla" } }
exports.module = new ExampleModule();
|