-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.example.js
42 lines (35 loc) · 1.08 KB
/
config.example.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
const { PermissionsBitField } = require('discord.js');
const config = {
// Array of Intents your bot needs
// https://discord.com/developers/docs/topics/gateway#gateway-intents
intents: [ 'Guilds' ],
// Bot activity
presence: {
// One of online, idle, invisible, dnd
status: 'online',
activities: [
{
name: '/help',
// One of Playing, Streaming, Listening, Watching
type: 'Listening'
}
]
},
// Additional permissions that are considered required when generating
// the bot invite link with /invite
permissionsBase: [
PermissionsBitField.Flags.ViewChannel,
PermissionsBitField.Flags.SendMessages,
PermissionsBitField.Flags.SendMessagesInThreads
],
// Permission config
permissions: {
// Bot Owner, highest permission level (5)
ownerId: '1148597817498140774',
// Bot developers, second to highest permission level (4)
developers: [ '625286565375246366' ]
},
// The Discord server invite to your Support server
supportServerInviteLink: 'https://discord.mirasaki.dev'
};
module.exports = config;