-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
56 lines (52 loc) · 1.48 KB
/
config.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const { Intents } = require('discord.js')
module.exports.internal = {
token: 'OTQzNDkwMjMwODUyNDE1NTQ5.GVluob.vYyc5gvNjwYo6tCZQEu8M4nMBWzcSTg7JDp-is',
mongoURL: 'mongodb+srv://privatevoicebase:[email protected]/?retryWrites=true&w=majority'
}
module.exports.intents = [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_PRESENCES,
Intents.FLAGS.GUILD_MEMBERS,
Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS,
Intents.FLAGS.GUILD_VOICE_STATES,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
Intents.FLAGS.GUILD_MESSAGE_TYPING
]
module.exports.ids = {
owner: "409061862223904779",
messages: {
privatrooms: '1064048470752763924' // убераем 2
},
guilds: {
main: '936364515547811852'
},
channels: {
text: {
privatrooms: '1020659119708975154' // убераем 1
},
voice: {
createPrivate: '1020659192765354064'
},
categories: {
privatrooms: '1020659062259601478'
}
}
}
module.exports.permissions = {
privateroom: {
creator: {
CREATE_INSTANT_INVITE: true,
VIEW_CHANNEL: true,
CONNECT: true,
SPEAK: true,
STREAM: true,
USE_VAD: true,
PRIORITY_SPEAKER: true,
MANAGE_CHANNELS: false,
MANAGE_ROLES: false,
MANAGE_WEBHOOKS: false,
MOVE_MEMBERS: false,
}
}
}