const Discord = require('discord.js'); const chalk = require('chalk'); const moment = require('moment'); const mongoose = require('mongoose'); const ora = require('ora'); const GuildSettings = require('../models/guild'); const BotDataSchema = require('../models/bot'); const LogData = require('../models/log'); const siftStatuses = require('../util/siftstatuses'); const localXPCacheClean = require('../util/lxp/cacheloop'); let prefix = 'l.'; module.exports = async client => { const config = client.config; /*let db = mongoose.connection; await db.guild.update({}, {"$set": {'prefix': ''}}, false, true);*/ console.log(`\n${chalk.green('[BOOT]')} >> [${moment().format('L LTS')}] -> ${chalk.greenBright("Connected to Discord")}.`); let date = new Date; date = date.toString().slice(date.toString().search(":") - 2, date.toString().search(":") + 6); console.log(`\n${chalk.gray('[INFO]')} >> ${chalk.white(`Logged in at ${date}.`)}`); console.log(`\n${chalk.gray('[INFO]')} >> ${chalk.white(`Logged in as ${client.user.username}!`)}`); console.log(`${chalk.gray('[INFO]')} >> ${chalk.white(`Client ID: ${client.user.id}`)}`); console.log(`${chalk.gray('[INFO]')} >> ${chalk.white(`Running on ${client.guilds.cache.size} servers!`)}`); console.log(`${chalk.gray('[INFO]')} >> ${chalk.white(`Serving ${client.users.cache.size} users!`)}`); let responses = { "PLAYING": [ `with my darling`, 'RAIN: Shadow Lords', "with my waifu", "with the neko formula", "with magic", "terrible anime games", "anime OSTs at max volume", `${Math.ceil(Math.random() * 100)} days of trying to become a samurai`, "with the sauce", "witch hats are >", "explosion magic is the best magic", "with Kazuma's sanity" ,`in ${client.guilds.cache.size} servers` ], "WATCHING": [ `for ${client.commands.size} commands`, "I'm not a bad slime, slurp!", "Lelouch rule the world!", "a slime somehow start an empire", "a fox-maid get her tail fluffed", "a raccoon-girl and some guy with a shield", "some chick with unusually red hair", "Mob hit 100", "a really bad harem anime", "The Black Swordsman", "The Misfit of Demon King Academy", "Akame ga Kill" ,`over ${client.guilds.cache.size} servers` ] }; const setR = () => { let type = Object.keys(responses)[Math.floor(Math.random() * Object.keys(responses).length)]; if (type === "PLAYING") {client.user.setActivity(responses[type][Math.floor(Math.random() * responses[type].length)] + " | " + prefix + "help");} else {client.user.setActivity(responses[type][Math.floor(Math.random() * responses[type].length)] + " | " + prefix + "help", {type: type});} } setR(); setInterval(setR, 14400000); const setPL = async () => {let tg; for (tg of Array.from(client.guilds.cache.values)) { let tguild = await GuildSettings.findOne({gid: tg.id}); if (tguild && tguild.prefix && tguild.prefix.length) {client.guildconfig.prefixes.set(tg.id, tguild.prefix);} let tl = await LogData.findOne({gid: tg.id}); if (tl) { let keys = Object.keys(tl); let k; for (k of keys) {if (typeof tl[k] === "string" && tl[k].length) { if (!client.guildconfig.logs.has(tg.id)) {client.guildconfig.logs.set(tg.id, new Map());} client.guildconfig.logs.get(tg.id).set(k, tl[k]); }} } }}; setPL(); siftStatuses(); setInterval(() => {setPL(); siftStatuses(client, null);}, 120000); await require('../util/cache')(client); setInterval(() => localXPCacheClean(client), 150000); let botData = await BotDataSchema.findOne({finder: 'lel'}) ? await BotDataSchema.findOne({finder: 'lel'}) : new BotDataSchema({ finder: 'lel', commands: 0, servers: 0, servers_all: 0, restarts: 0, lastRestart: new Date(), errors_all: 0, }); botData.restarts = botData.restarts + 1; botData.lastRestart = new Date(); console.log(`${chalk.gray('\n[INFO]')} >> ${chalk.white(`This is restart #${botData.restarts}.`)}`); let cms = new Date().getTime(); console.log(`${chalk.gray('\n[INFO]')} >> ${chalk.white(`Startup completed in ${cms - client.misc.startup.getTime()}ms (${cms - client.misc.startupNoConnect.getTime()}ms post-connect).`)}`); await botData.save(); };