aoi.tools
v1.0.5
Published
Customize and manage your aoi.js!
Downloads
30
Maintainers
Readme
Aoi.js Handler
const { Handler } = require('aoi.tools')
const handler = new Handler(client)
.loadCommands('./commands')
.loadVariables('./variables')
.loadStatus('./status')
.loadFunctions('./functions');Main Commands
const { Handler } = require('aoi.tools')
const handler = new Handler(client)
.loadCommands('./commands', {
main: `$onlyIf[$getGlobalUserVar[blacklisted;$authorID]==false;You are blacklisted!]`,
execute: ["default"] // only default functions
})Custom Functions
const { Functions } = require('aoi.tools')
const functions = new Functions(client).load();