You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/index.js

49 lines
1.2 KiB
JavaScript

const { AkairoClient, CommandHandler, InhibitorHandler, ListenerHandler } = require('discord-akairo');
const { token, prefix, ownerID } = require('./config.json');
class hahaYesClient extends AkairoClient {
constructor() {
super({
ownerID: ownerID,
}, {
disableEveryone: true
});
this.commandHandler = new CommandHandler(this, {
directory: './commands/',
prefix: prefix,
commandUtil: true,
commandUtilLifetime: 60000,
allowMention: true,
handleEdits: true,
});
this.inhibitorHandler = new InhibitorHandler(this, {
directory: './event/inhibitors/',
emitters: {
process
},
});
this.listenerHandler = new ListenerHandler(this, {
directory: './event/listeners/'
});
this.listenerHandler.setEmitters({
commandHandler: this.commandHandler,
inhibitorHandler: this.inhibitorHandler,
listenerHandler: this.listenerHandler
});
this.commandHandler.useInhibitorHandler(this.inhibitorHandler);
this.commandHandler.useListenerHandler(this.listenerHandler);
this.listenerHandler.loadAll();
this.inhibitorHandler.loadAll();
this.commandHandler.loadAll();
}
}
const client = new hahaYesClient();
client.login(token);