-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconfig.js
More file actions
executable file
路41 lines (35 loc) 路 851 Bytes
/
Copy pathconfig.js
File metadata and controls
executable file
路41 lines (35 loc) 路 851 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
32
33
34
35
36
37
38
39
40
41
export default {
// Default Prefix for Commands
sign: '!',
// Directory where modules are located
directory: './commands/',
// Users (user id) with bot admin controls
admin: ['132368482120499201'],
// Mac Address of Server for reference to server status
server: '52:63:30:b5:84:30',
// Economy Settings
economy: {
range: [1, 3],
range_media: [2, 4],
currency: 'cheese',
currency_plural: 'cheese',
symbol: null,
emoji: '馃'
},
// Predefined Colours for Embeds
colours: {
default: 0xB699FF,
success: 0x52C652,
error: 0xE93F3C,
warn: 0xF5AD1E,
info: 0x52B7D6
},
// Earthquake Early Warnings (deprecated, disabled)
shake: {
socket: 'http://shake.kurisubrooks.com:3390',
channels: {
post: '276249021579001857',
debug: '212917108445544449'
}
}
};