-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimports.js
31 lines (27 loc) · 825 Bytes
/
imports.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const { Intents } = require('discord.js');
const Discord = require('discord.js');
//The bot login
module.exports = {
Discord: require('discord.js'),
bot: new Discord.Client({ partials: ['MESSAGE', 'CHANNEL', 'REACTION'] }),
ModuleImports: new Map(),
ModuleType: new Map(),
LevelSystemUserTimeout: new Map(),
MusicQueue: new Map(),
MusicLoop: false,
CommandCooldown: new Map(),
SetReddit: [],
SetUm: [],
message_duplicate: new Map(),
message_duplicate_count: new Map(),
LevelSystemBoost: 1,
nsfw_all_stars_anti_spam: [],
}
/* THIS IS HOW ITS GONNA WORK LATER, MOVE OVER TO GLOBAL VARS
const Discord = require('discord.js')
module.exports = {
Discord: require('discord.js'),
bot: new Discord.Client({ partials: ['MESSAGE', 'CHANNEL', 'REACTION'] }),
ModuleImports: new Map(),
ModuleType: new Map()
}*/