Changed commands and events to be an array, allowing multiple folders

This commit is contained in:
Vylpes 2020-10-23 18:17:28 +01:00
parent 1d075e5a2c
commit bf09d9bed0
3 changed files with 43 additions and 35 deletions

View file

@ -12,15 +12,19 @@ Copy the config template file and fill in the strings.
{
"token": "",
"prefix": "",
"commands": "",
"events": ""
"commands": [
""
],
"events": [
""
]
}
```
* **Token:** Your bot's token
* **Prefix** The command prefix
* **Commands:** The folder name containing your commands
* **Events:** The folder name containing your events
* **Commands:** An array of the folders which contain your commands
* **Events:** An array of the folders which contain your events
## Usage

View file

@ -33,10 +33,10 @@ class client extends Client {
if (typeof config.token != "string") throw "Token is not a string";
if (typeof config.prefix != "string") throw "Prefix is not a string";
if (typeof config.commands != "string") throw "Commands is not a string";
if (typeof config.commands != "object") throw "Commands is not a string";
if (!existsSync(`${process.cwd()}/${config.commands}`)) throw "Commands folder doesn't exist";
if (typeof config.events != "string") throw "Events is not a string";
if (typeof config.events != "object") throw "Events is not a string";
if (!existsSync(`${process.cwd()}/${config.events}`)) throw "Events folder doesn't exist";
this._config = config;

View file

@ -7,6 +7,9 @@ class util {
}
loadCommand(name, args, message) {
for (let c = 0; c < this._client.config.commands.length; c++) {
let folder = this._client.config.commands[c];
stat(`${process.cwd()}/${this._client.config.commands}/${name}.js`, (err, stat) => {
if (err == null) {
let commandFile = require(`${process.cwd()}/${this._client.config.commands}/${name}.js`);
@ -40,6 +43,7 @@ class util {
}
});
}
}
loadEvents() {
let eventFiles = readdirSync(`${process.cwd()}/${this._client.config.events}/`);