-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.ts
100 lines (98 loc) · 4.06 KB
/
config.ts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { ConfigImport } from "./types/Config.type";
const Config: ConfigImport = {
production: {
env: "production",
connectionOptions: { // TS3 ServerQuery Login
host: "ipaddress",
queryport: 10011,
serverport: 9970,
username: "queryusername",
password: "querypass",
nickname: "Queue Bot",
},
redis: {
connectionString: "redis://default:P@55w0rd@database:port",
recoveryExpireTime: 300 // The time in seconds that the bot will wait before deleting users recovery data. (i.e. After 5 minutes people won't be able to use !recover if their TS crashed)
},
botOptions: {
prefix: "!",
queuedChannels: [
{
queueName: "1",
parentChannel: "1614", // The direct parent of the channel users are queuing for.
channel: "12510", // The channel the users will be queueing for.
excludedSubChannels: ["1613", "1619", "2111", "11501", "23933"], // Subchannels of the queue channel the bot will not look into when seeing if the channel is able to be joined.
freezeQueueChannels: [ // Channels that will hold up the queue if there are people in them. (NOT the queued channel)
"1234",
"1234"
]
}
],
queueChannelID: "25919", // The channel users must join to enter commands.
afkChannelID: "2083", // AFK channel
staffGroups: [
"1419",
"1420",
"1422"
],
adminGroups: [
"1431",
"1421",
"1422",
"1423"
],
skippedChannels: [ // Channels the bot will ignore people being in and move the queue as normal. (i.e. if someone in queue is in one of these channels they'll be skipped over)
"1234",
"1234"
]
}
},
dev: {
env: "dev",
connectionOptions: { // TS3 ServerQuery Login
host: "ipaddress",
queryport: 10011,
serverport: 9970,
username: "queryusername",
password: "querypass",
nickname: "Queue Bot",
},
redis: {
connectionString: "redis://default:P@55w0rd@database:port",
recoveryExpireTime: 300 // The time in seconds that the bot will wait before deleting users recovery data. (i.e. After 5 minutes people won't be able to use !recover if their TS crashed)
},
botOptions: {
prefix: "!",
queuedChannels: [
{
queueName: "1",
parentChannel: "1614", // The direct parent of the channel users are queuing for.
channel: "12510", // The channel the users will be queueing for.
excludedSubChannels: ["1613", "1619", "2111", "11501", "23933"], // Subchannels of the queue channel the bot will not look into when seeing if the channel is able to be joined.
freezeQueueChannels: [ // Channels that will hold up the queue if there are people in them. (NOT the queued channel)
"1234",
"1234"
]
}
],
queueChannelID: "3479", // The channel users must join to enter commands.
afkChannelID: "3478", // AFK channel
staffGroups: [
"2590",
"2484",
"2593"
],
adminGroups: [
"2592",
"2593",
"2594",
"2602"
],
skippedChannels: [ // Channels the bot will ignore people being in and move the queue as normal. (i.e. if someone in queue is in one of these channels they'll be skipped over)
"1234",
"1234"
],
}
}
}
export default Config;