Changed commands and events to be an array, allowing multiple folders
This commit is contained in:
parent
1d075e5a2c
commit
bf09d9bed0
3 changed files with 43 additions and 35 deletions
12
README.md
12
README.md
|
@ -12,15 +12,19 @@ Copy the config template file and fill in the strings.
|
||||||
{
|
{
|
||||||
"token": "",
|
"token": "",
|
||||||
"prefix": "",
|
"prefix": "",
|
||||||
"commands": "",
|
"commands": [
|
||||||
"events": ""
|
""
|
||||||
|
],
|
||||||
|
"events": [
|
||||||
|
""
|
||||||
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
* **Token:** Your bot's token
|
* **Token:** Your bot's token
|
||||||
* **Prefix** The command prefix
|
* **Prefix** The command prefix
|
||||||
* **Commands:** The folder name containing your commands
|
* **Commands:** An array of the folders which contain your commands
|
||||||
* **Events:** The folder name containing your events
|
* **Events:** An array of the folders which contain your events
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
|
@ -33,10 +33,10 @@ class client extends Client {
|
||||||
if (typeof config.token != "string") throw "Token is not a string";
|
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.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 (!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";
|
if (!existsSync(`${process.cwd()}/${config.events}`)) throw "Events folder doesn't exist";
|
||||||
|
|
||||||
this._config = config;
|
this._config = config;
|
||||||
|
|
|
@ -7,38 +7,42 @@ class util {
|
||||||
}
|
}
|
||||||
|
|
||||||
loadCommand(name, args, message) {
|
loadCommand(name, args, message) {
|
||||||
stat(`${process.cwd()}/${this._client.config.commands}/${name}.js`, (err, stat) => {
|
for (let c = 0; c < this._client.config.commands.length; c++) {
|
||||||
if (err == null) {
|
let folder = this._client.config.commands[c];
|
||||||
let commandFile = require(`${process.cwd()}/${this._client.config.commands}/${name}.js`);
|
|
||||||
let command = new commandFile();
|
|
||||||
|
|
||||||
let requiredConfigs = command.requiredConfigs;
|
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`);
|
||||||
|
let command = new commandFile();
|
||||||
|
|
||||||
for (let i = 0; i < requiredConfigs.length; i++) {
|
let requiredConfigs = command.requiredConfigs;
|
||||||
if (!this._client.config[name]) throw `${commandFile.name} requires ${requiredConfigs[i]} in it's configuration`;
|
|
||||||
if (!this._client.config[name][requiredConfigs[i]]) throw `${commandFile.name} requires ${requiredConfigs[i]} in it's configuration`;
|
|
||||||
}
|
|
||||||
|
|
||||||
let requiredRoles = command.roles;
|
for (let i = 0; i < requiredConfigs.length; i++) {
|
||||||
|
if (!this._client.config[name]) throw `${commandFile.name} requires ${requiredConfigs[i]} in it's configuration`;
|
||||||
|
if (!this._client.config[name][requiredConfigs[i]]) throw `${commandFile.name} requires ${requiredConfigs[i]} in it's configuration`;
|
||||||
|
}
|
||||||
|
|
||||||
for (let i = 0; i < requiredRoles.length; i++) {
|
let requiredRoles = command.roles;
|
||||||
if (!message.member.roles.cache.find(role => role.name == requiredRoles[i])) {
|
|
||||||
message.reply(`You require the \`${requiredRoles[i]}\` role to run this command`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
command[command.run]({
|
for (let i = 0; i < requiredRoles.length; i++) {
|
||||||
"command": name,
|
if (!message.member.roles.cache.find(role => role.name == requiredRoles[i])) {
|
||||||
"arguments": args,
|
message.reply(`You require the \`${requiredRoles[i]}\` role to run this command`);
|
||||||
"client": this._client,
|
return;
|
||||||
"message": message,
|
}
|
||||||
"config": config
|
}
|
||||||
});
|
|
||||||
} else if (err.code === 'ENOENT') {
|
command[command.run]({
|
||||||
// FILE DOESN'T EXIST
|
"command": name,
|
||||||
}
|
"arguments": args,
|
||||||
});
|
"client": this._client,
|
||||||
|
"message": message,
|
||||||
|
"config": config
|
||||||
|
});
|
||||||
|
} else if (err.code === 'ENOENT') {
|
||||||
|
// FILE DOESN'T EXIST
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
loadEvents() {
|
loadEvents() {
|
||||||
|
|
Reference in a new issue