2020-03-29 07:45:09 +00:00
|
|
|
// Woomy version 2
|
|
|
|
// Copyright 2020 mudkipscience
|
|
|
|
|
2020-03-30 08:47:55 +00:00
|
|
|
// Check node.js version
|
2020-03-29 07:45:09 +00:00
|
|
|
if (Number(process.version.slice(1).split('.')[0]) < 13) {
|
|
|
|
console.log('NodeJS 12.0.0 or higher is required. Please update NodeJS on your system.')
|
|
|
|
process.exit()
|
|
|
|
}
|
|
|
|
|
2020-03-30 08:47:55 +00:00
|
|
|
// Load environment variables / config
|
2020-03-29 07:45:09 +00:00
|
|
|
const fs = require('fs')
|
|
|
|
|
|
|
|
if (fs.existsSync('./.env') === false) {
|
|
|
|
console.log('.env file not found!')
|
|
|
|
process.exit()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fs.existsSync('./config.js') === false) {
|
|
|
|
console.log('config file not found!')
|
|
|
|
process.exit()
|
|
|
|
}
|
|
|
|
|
|
|
|
require('dotenv').config()
|
|
|
|
|
2020-03-30 08:47:55 +00:00
|
|
|
// Prepare variables
|
2020-03-29 07:45:09 +00:00
|
|
|
const Discord = require('discord.js')
|
|
|
|
const client = new Discord.Client({ disabledEvents: ['TYPING_START'] })
|
|
|
|
|
|
|
|
client.commands = new Discord.Collection()
|
|
|
|
client.aliases = new Discord.Collection()
|
|
|
|
|
2020-03-30 08:47:55 +00:00
|
|
|
// Initialization function
|
2020-03-29 07:45:09 +00:00
|
|
|
const init = async () => {
|
2020-03-30 08:47:55 +00:00
|
|
|
// Register events
|
|
|
|
fs.readdir('./events', (err, files) => {
|
|
|
|
files.forEach(file => {
|
|
|
|
client.on(file.substr(0, file.length - 3), require('./events/' + file))
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Login into Discord
|
|
|
|
client.login(process.env.TOKEN);
|
2020-03-29 07:45:09 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 08:47:55 +00:00
|
|
|
init();
|