mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-11-04 10:09:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const { Client, Collection } = require('discord.js');
 | 
						|
const Discord = require('discord.js');
 | 
						|
const fs = require('fs');
 | 
						|
const path = require('path')
 | 
						|
const events = '../events/';
 | 
						|
 | 
						|
module.exports = class extends Client {
 | 
						|
    constructor() {
 | 
						|
        super({
 | 
						|
            disableEveryone: true,
 | 
						|
            disabledEvents: ['TYPING_START']
 | 
						|
        });
 | 
						|
        this.commands = new Collection();
 | 
						|
        this.commandAliases = new Collection();
 | 
						|
        this.radio = new Map();
 | 
						|
        this.funcs = {};
 | 
						|
        this.dispatcher = {};
 | 
						|
        this.config = require('./config/config.js');
 | 
						|
 | 
						|
        fs.readdirSync(path.join(__dirname, 'funcs')).forEach(filename => {
 | 
						|
            this.funcs[filename.slice(0, -3)] = require(`./funcs/${filename}`);
 | 
						|
        });
 | 
						|
 | 
						|
        const commandFiles = fs.readdirSync(path.join(path.dirname(__dirname), 'commands')).filter(f => f.endsWith('.js'));
 | 
						|
        for (const file of commandFiles) {
 | 
						|
            const command = require(`../commands/${file}`);
 | 
						|
            command.uses = 0;
 | 
						|
            this.commands.set(command.name, command);
 | 
						|
            this.commandAliases.set(command.alias, command);
 | 
						|
        }
 | 
						|
 | 
						|
        if (this.config.devMode) {
 | 
						|
            this.config.token = this.config.devToken;
 | 
						|
        }
 | 
						|
 | 
						|
        this.on('ready', () => {
 | 
						|
            require(`${events}ready`).execute(this, Discord);
 | 
						|
        });
 | 
						|
        this.on('message', (msg) => {
 | 
						|
            require(`${events}msg`).execute(this, msg, Discord);
 | 
						|
        });
 | 
						|
        this.on('voiceStateUpdate', (oldState, newState) => {
 | 
						|
            require(`${events}voiceStateUpdate`).execute(this, oldState, newState);
 | 
						|
        });
 | 
						|
        this.on('error', (error) => {
 | 
						|
            client.channels.fetch(client.config.debug_channel).send('Error: ' + error);
 | 
						|
        });
 | 
						|
 | 
						|
        this.login(this.config.token).catch(err => console.log('Failed to login: ' + err));
 | 
						|
    }
 | 
						|
};
 |