-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
31 lines (30 loc) · 836 Bytes
/
Copy pathconfig.js
File metadata and controls
31 lines (30 loc) · 836 Bytes
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 { IntentsBitField, PermissionFlagsBits } = require("discord.js")
module.exports = {
bot: {
version: "0.0.1",
owners: [
""
],
prefix: "!",
callMessage: "hey bot",
disabledIntents: [
IntentsBitField.Flags.GuildPresences,
IntentsBitField.Flags.GuildMembers
],
maxListeners: 50,
basicPermissions: [
PermissionFlagsBits.AttachFiles,
PermissionFlagsBits.EmbedLinks,
PermissionFlagsBits.ReadMessageHistory,
PermissionFlagsBits.SendMessages,
PermissionFlagsBits.UseExternalEmojis,
PermissionFlagsBits.ViewChannel
]
},
topGG: {
interval: 3600000,
retryAttempts: 3,
retryDelay: 30000,
timeout: 10000
}
}