You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
758 B
15 lines
758 B
4 years ago
|
const Discord = require('discord.js');
|
||
|
const fs = require('fs');
|
||
|
const chalk = require('chalk');
|
||
|
|
||
|
module.exports = client => {
|
||
|
var commands = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
|
||
|
console.log(`\n${chalk.gray('[BOOT]')} >> ${chalk.blue('Getting Commands...')}\n`);
|
||
|
for (let commandf of commands) {
|
||
|
var command = require(`../commands/${commandf}`);
|
||
|
client.commands.set(command.name, command);
|
||
|
if (command.aliases) {command.aliases.forEach(a => client.aliases.set(a, command.name));}
|
||
|
console.log(`${chalk.gray('[LOG] ')} >> ${chalk.blueBright('Loaded Command')} ${chalk.white(command.name)}`);
|
||
|
}
|
||
|
console.log(`\n${chalk.gray('[BOOT]')} >> ${chalk.blue('Loaded all Commands')}`);
|
||
|
};
|