This bot uses the following things:
require/module.exports, notimport/export- A command handler
- A few different modules, some I have created/assembled and some from npm
@yaas/bacon-cipherdiscord.jsfiglet
A normal command file looks like this:
class command { // This name does not matter
constructor() {
this.name = 'figlet'; // The primary way to call this
// make it unique along with the aliases
this.aliases = ['format']; // Leave empty if no extra ways to call
// are necessary
}
}
module.exports = command;