2022-01-05 00:24:57 +05:00
const chalk = require ( "chalk" ) ,
{ Permissions } = require ( "discord.js" ) ;
2022-01-04 02:18:28 +05:00
module . exports = class {
constructor ( client ) {
this . client = client ;
}
async run ( ) {
const client = this . client ;
// Logs some informations using logger
client . logger . log ( ` Loading a total of ${ client . commands . size } command(s). ` , "log" ) ;
client . logger . log ( ` ${ client . user . tag } , ready to serve ${ client . users . cache . size } users in ${ client . guilds . cache . filter ( guild => guild . id != "568120814776614924" && guild . id != "892727526911258654" ) . size } servers. ` , "ready" ) ;
2022-01-05 00:24:57 +05:00
client . logger . log ( ` Invite Link: ${ client . generateInvite ( { scopes : [ "bot" ] , permissions : [ Permissions . FLAGS . ADMINISTRATOR ] } )} ` , "ready" ) ;
2022-01-04 02:18:28 +05:00
// Discord Together
const discordtogether = require ( "../helpers/discordTogether" ) ;
discordtogether . init ( client ) ;
// Birthday Announce
const birthdays = require ( "../helpers/birthdays" ) ;
birthdays . init ( client ) ;
// DiscordBots.org STATS
const discordbotsorg = require ( "../helpers/discordbots.org" ) ;
discordbotsorg . init ( client ) ;
// UNMUTE USERS
const checkUnmutes = require ( "../helpers/checkUnmutes" ) ;
checkUnmutes . init ( client ) ;
// SEND REMINDS
const checkReminds = require ( "../helpers/checkReminds" ) ;
checkReminds . init ( client ) ;
// Start the dashboard
if ( client . config . dashboard . enabled ) client . dashboard . load ( client ) ;
// Update status every 20s
let servers = client . guilds . cache . filter ( guild => guild . id != "568120814776614924" && guild . id != "892727526911258654" ) . size ;
const version = require ( "../package.json" ) . version ;
const status = [
2022-01-05 03:38:58 +05:00
{ name : ` ${ servers } ${ client . getNoun ( servers , client . translate ( "misc:NOUNS:SERVER:1" ) , client . translate ( "misc:NOUNS:SERVER:2" ) , client . translate ( "misc:NOUNS:SERVER:5" ) ) } ` , type : "LISTENING" } ,
{ name : "help" , type : "WATCHING" } ,
{ name : ` ${ client . commands . size } ${ client . getNoun ( servers , client . translate ( "misc:NOUNS:COMMANDS:1" ) , client . translate ( "misc:NOUNS:COMMANDS:2" ) , client . translate ( "misc:NOUNS:COMMANDS:5" ) ) } ` , type : "WATCHING" }
2022-01-04 02:18:28 +05:00
] ;
let i = 0 ;
setInterval ( function ( ) {
servers = client . guilds . cache . filter ( guild => guild . id != "568120814776614924" && guild . id != "892727526911258654" ) . size ;
const random = status [ parseInt ( i , 10 ) ] ;
client . user . setActivity ( ` ${ random . name } | v ${ version } ` , {
type : random . type
} ) ;
if ( status [ parseInt ( i + 1 , 10 ) ] ) i ++ ;
else i = 0 ;
} , 20000 ) ; // Every 20 seconds
}
} ;