-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconfig.yaml
778 lines (640 loc) · 27.5 KB
/
config.yaml
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
# override permissions for any command
permissions:
liveinteraction:
whitelist: ${ [ ROLES.PILLAR_STAFF, ...getValuesRecursive(ROLES.ADMIN) ] }
livecommand:
whitelist: ${ [ ROLES.PILLAR_STAFF, ...getValuesRecursive(ROLES.ADMIN) ] }
# # Its possible to set permissions for internal commands too.
role:
whitelist: >-
${ [
...getValuesRecursive(ROLES.ADMIN),
ROLES.PILLAR_HEAD,
ROLES.PILLAR_VICE_HEAD
] }
serverinfo:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
# point system
points/add:
whitelist: >-
${ [
...getValuesRecursive(ROLES.ADMIN),
ROLES.PILLAR_HEAD,
ROLES.PILLAR_VICE_HEAD,
ROLES.STAFF_ADMIN,
ROLES.STAFF_HEAD
] }
points/list:
whitelist: >-
${ [
...getValuesRecursive(ROLES.ADMIN),
ROLES.PILLAR_HEAD,
ROLES.PILLAR_VICE_HEAD,
ROLES.STAFF_ADMIN,
ROLES.STAFF_HEAD
] }
points/clean:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ], ROLES.STAFF_ADMIN }
points/import:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ], ROLES.STAFF_ADMIN }
points/get:
whitelist: >-
${ [
...getValuesRecursive(ROLES.ADMIN),
ROLES.PILLAR_STAFF,
ROLES.STAFF.GUHUA_GUIDE,
ROLES.STAFF_KQM
] }
#
# # Its possible to set permissions for custom commands
# echo:
# whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
#
# # Its possible to set permissions for custom commands in folders
# characters/amber:
# whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
# Only delete stuff after this line if you know what you're doing.
modules:
userNotes:
enabled: true
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ...getValuesRecursive(ROLES.MOD) ] }
pointsSystem:
enabled: true
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.VERIFIED, ROLES.STAFF_ADMIN, ROLES.STAFF_HEAD, ROLES.STAFF_KQM ] }
loggingChannel: "${ CHANNELS.GI_BOT_LOGGING }"
vanityRoles:
enabled: true
# Who can use the /vanityrole command, anyone with MANAGE_ROLES if not set.
permissions:
whitelist:
- "${ ROLES.PATREON_ARCHON }"
- "${ ROLES.PATREON_ADEPTUS }"
# Log whenever someone's custom role is updated
loggingChannel: "${ CHANNELS.GI_BOT_LOGGING }"
createRoleAfter: "${ ROLES.PATREON_ADEPTUS }"
reactRoles:
enabled: true
# Who can use the /reactroles command, anyone with MANAGE_ROLES if not set.
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
configs:
# randomRole:
# title: "Get a random role"
# description: |-
# Get a random role out of <@&947365141450727495>, <@&947356633737080853>, and <@&947356702318153749>
# permissions:
# blacklist:
# - "947365141450727495"
# - "947356633737080853"
# - "947356702318153749"
# reactions:
# "pe:946999484175491102":
# role: >
# ${
# const reactionRoles = [
# "947365141450727495",
# "947356633737080853",
# "947356702318153749"
# ];
# reactionRoles[Math.floor(Math.random() * reactionRoles.length)];
# }
# description: "Random Role"
keqkey:
title: "Keqing's Key"
color: ${ COLORS.ELECTRO_PURPLE }
description:
permissions:
whitelist: >-
${ [
...getValuesRecursive(ROLES.ADMIN),
ROLES.HEAD_MILLELITH,
ROLES.HONORARY_QIXING,
ROLES.VICE_HEAD_MILLELITH,
ROLES.PILLAR_HEAD,
ROLES.PILLAR_VICE_HEAD
] }
reactions:
"love:767201369525321758":
role: "${ ROLES.ADMIN.KEQINGS_KEY }"
description: ":key: Break glass in case of emergency."
main:
image: "https://cdn.discordapp.com/attachments/810941835949244447/811264667867414558/unknown.png"
title: "Would you be interested in extended car insurance?"
description: |-
It would benefit you in the long term if you opted-in for out Extended Car Insurance:tm:. We cover everything from your car being blown up by the local gang to Russian troops commandeering your vehicle.
*For full coverage terms please read our [Terms of Service](https://www.youtube.com/watch?v=dQw4w9WgXcQ)*
# Who can get these roles
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
# REACTION EMOJI ID: ROLE
"pe:946999484175491102":
role: "945554661413367819"
description: "Yes"
"based:945928754973270067":
role: "945554661413367819"
description: "Absolutely"
# TC Readme Reacts
theoryreadme:
image: "https://cdn.discordapp.com/attachments/763589418086432778/813379829151301642/GI_-_KQM_2.png"
title: "Theorycrafting Section Roles"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React with the matching emoji for specific roles
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
# REACTION EMOJI ID: ROLE
"KeqingThink:1027399545430212671":
role: "${ ROLES.THEORYCRAFTER }"
description: "<@&${ ROLES.THEORYCRAFTER }>: Access to the TC Section"
"keqnote:838482574644346931":
role: "${ ROLES.LIBRARY_SUBMISSIONS }"
description: "<@&${ ROLES.LIBRARY_SUBMISSIONS }>: Access to the TC Tickets"
"keqingPain:854599966432559154":
role: "${ ROLES.GUIDE_SUBMISSIONS }"
description: "<@&${ ROLES.GUIDE_SUBMISSIONS }>: Access to Guide Tickets"
"KeqSalute:1021891784713969715":
role: "${ ROLES.THEORYHUNTER }"
description: "<@&${ ROLES.THEORYHUNTER }>: Be notified when a theoryhunt is posted"
"madamePING:776287232579207198":
role: "${ ROLES.TC_PING }"
description: "<@&${ ROLES.TC_PING }>: Be notified about important TC announcements"
theoryreadme2:
title: "Guide & Calc Verification"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React to be pinged for Guide or Calc Verifications (available to TC Staff & <@&${ ROLES.WANGSHENG_THEORYCRAFTER }>).
*You will be pinged in Guide Tickets when they are ready to be verified.*
permissions:
whitelist: >-
${ [
...getValuesRecursive(ROLES.ADMIN),
ROLES.WANGSHENG_THEORYCRAFTER,
ROLES.STAFF.TC_STAFF,
ROLES.STAFF.WANGSHENG_EDITOR,
ROLES.STAFF.WANGSHENG_SCHOLAR,
ROLES.STAFF.WANGSHENG_MONKE,
ROLES.STAFF.WFP_TC_STAFF,
ROLES.STAFF.WANGSHENG_ASST_EDITOR,
ROLES.WANGSHENG_DIRECTOR,
ROLES.WANGSHENG_ASST_DIRECTOR
] }
reactions:
"keqisee:776297817438289920":
role: "${ ROLES.GUIDE_VERIFICATION }"
description: "<@&${ ROLES.GUIDE_VERIFICATION }>: Gives you the Guide Verification Role"
"KeqingSparkle:779046540408127521":
role: "${ ROLES.CALC_VERIFICATION }"
description: "<@&${ ROLES.CALC_VERIFICATION }>: Gives you the Calc Verification Role"
guidesubmissionreactrole:
title: "Guide Submissions React Role"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
Optional react role to see guide tickets. If you are interested in guide work, you will find tickets for ongoing guide projects.
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
# REACTION EMOJI ID: ROLE
"keqingflower:1049870812796178442":
role: "${ ROLES.GUIDE_SUBMISSIONS }"
description: "<@&${ ROLES.GUIDE_SUBMISSIONS }>: Gives you the Guide Verification Role which provides access to Guide Channels."
# Offtopic React Role
offtopicreactrole:
title: "Get access to the Offtopic part of KQM"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React with the matching emoji for specific roles
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
# REACTION EMOJI ID: ROLE
"morapls:770223616112853024":
role: "${ ROLES.OFFTOPIC }"
description: "<@&${ ROLES.OFFTOPIC }>: Access to all of Offtopic"
# Feiyun React Role
feiyunreact:
title: "Feiyun React Roles"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React with the matching emoji for specific roles
permissions:
whitelist:
- "${ ROLES.STAFF.FEIYUN_FILM_CREW }"
reactions:
# REACTION EMOJI ID: ROLE
"🎞️":
role: "${ ROLES.STAFF.FEIYUN_FILM_VIDEO_EDITOR }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_VIDEO_EDITOR }>: Role for Video Editor"
"⌨️":
role: "${ ROLES.STAFF.FEIYUN_FILM_SCRIPT_WRITER }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_SCRIPT_WRITER }>: Role for Script Writer"
"🔭":
role: "${ ROLES.STAFF.FEIYUN_FILM_CONTENT_QC }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_CONTENT_QC }>: Role for Content QC"
"🔍":
role: "${ ROLES.STAFF.FEIYUN_FILM_VIDEO_QC }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_VIDEO_QC }>: Role for Video QC"
"🔬":
role: "${ ROLES.STAFF.FEIYUN_FILM_GRAMMAR_QC }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_GRAMMAR_QC }>: Role for Grammar QC"
"📷":
role: "${ ROLES.STAFF.FEIYUN_FILM_RECORDER }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_RECORDER }>: Role for Recorder"
"🎙️":
role: "${ ROLES.STAFF.FEIYUN_FILM_VOICEOVER }"
description: "<@&${ ROLES.STAFF.FEIYUN_FILM_VOICEOVER }>: Role for Voiceover"
# Directory Reacts
reactrolesnotification:
image: "https://cdn.discordapp.com/attachments/954233449953234964/958172135996686356/kqm_notification_roles.png"
title: "・ Notifications ・"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React with the matching emoji for the pings you are interested in.
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
"madamePING:776287232579207198":
role: "${ ROLES.ALERT_ANNOUNCEMENTS }"
description: "Important server announcements"
"🏟️":
role: "${ ROLES.ALERT_TRUSTED_CREATORS }"
description: "Trusted Creators release content"
"twitch:956835761745956876":
role: "${ ROLES.ALERT_TWITCH }"
description: "KQM Twitch goes live\n"
"primogem:768816635120713769":
role: "${ ROLES.ALERT_CODES }"
description: "Primogem redeem codes are released."
"🎟️":
role: "${ ROLES.ALERT_GIVEAWAYS }"
description: "Giveaways (skins, Welkins, BPs, and more!)."
"KeqParty:805672780606734347":
role: ${ ROLES.EVENTS_KITTEN }
description: "Server events, including karaoke, game nights & more!"
"yaetcg:1066298575463649290":
role: "${ ROLES.ALERT_TCG }"
description: "GI TCG Events & Announcements"
"webevents:1035763039644942386":
role: "${ ROLES.ALERT_WEB_EVENTS }"
description: "A new Genshin Web Event is released.\n\n**・ Daily Alerts ・**\nReact below for daily game alerts.\n"
"🟥":
role: "${ ROLES.ALERT_DAILY_ASIA }"
description: "Dailies Alert - Asia and SAR Servers"
"🟦":
role: "${ ROLES.ALERT_DAILY_AMERICA }"
description: "Dailies Alert - America Server"
"🟫":
role: "${ ROLES.ALERT_DAILY_EUROPE }"
description: "Dailies Alert - Europe Server"
reactrolesregions:
image: "https://cdn.discordapp.com/attachments/954233449953234964/958172136613240892/kqm_region_roles.png"
title: "・ Coop Roles ・"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React here to join coop-chat for your game region.
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
"🟥":
role: "${ ROLES.REGION_ASIA }"
description: "Asia Server"
"🟦":
role: "${ ROLES.REGION_AMERICA }"
description: "America Server"
"🟫":
role: "${ ROLES.REGION_EUROPE }"
description: "Europe Server"
"🟨":
role: "${ ROLES.REGION_TWHKMO }"
description: "TW/HK/MO Server"
reactrolescategory:
image: "https://cdn.discordapp.com/attachments/954233449953234964/958172135791149076/kqm_category_roles.png"
title: "・ Categories ・"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React here to unlock the respective channels in the server.
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
"🖼️":
role: "${ ROLES.MEDIA }"
description: "Media *(Visible by default)*"
"🟣":
role: "${ ROLES.LEWD }"
description: "Lewd (18+ only)\n\n➜ For access to the theorycrafting category, react in <#939411507127668758>."
reactrolespronoun:
image: "https://cdn.discordapp.com/attachments/954233449953234964/958172136365752380/kqm_pronoun_roles.png"
title: "・ Pronouns ・"
color: ${ COLORS.ELECTRO_PURPLE }
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
"🟦":
role: "${ ROLES.PRONOUN_M }"
description: "He/Him"
"🟥":
role: "${ ROLES.PRONOUN_F }"
description: "She/Her"
"🟪":
role: "${ ROLES.PRONOUN_T }"
description: "They/Them"
"🟩":
role: "${ ROLES.PRONOUN_ASK }"
description: "Ask for Pronouns"
# Coop Category Regions
reactrolescoopregions:
title: "・ Region Roles ・"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React here to join the co-op chat for your game region.
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
"🟥":
role: "${ ROLES.REGION_ASIA }"
description: "Asia Server"
"🟦":
role: "${ ROLES.REGION_AMERICA }"
description: "America Server"
"🟫":
role: "${ ROLES.REGION_EUROPE }"
description: "Europe Server"
"🟨":
role: "${ ROLES.REGION_TWHKMO }"
description: "TW/HK/MO Server"
# Coop Category Pings
reactrolescooppings:
title: "・ Co-Op Ping Roles ・"
color: ${ COLORS.ELECTRO_PURPLE }
description: |-
React here to be pinged for various co-op activities.
permissions:
whitelist:
- "${ ROLES.VERIFIED }"
reactions:
"keqwave:1036844947304894464":
role: "${ ROLES.SEELIE }"
description: "<@&${ ROLES.SEELIE }>: General Co-Op Ping"
"QiqiPeek:781028042708746260":
role: "${ ROLES.TEAPOT_EXCHANGE }"
description: "<@&${ ROLES.TEAPOT_EXCHANGE }>: For exchanging teapot shops"
"KeqSalute:1021891784713969715":
role: "${ ROLES.ELITE_SHARING }"
description: "<@&${ ROLES.ELITE_SHARING }>: For sharing world elites"
"keqWant:908000006974369802":
role: "${ ROLES.ELITE_TRADING }"
description: "<@&${ ROLES.ELITE_TRADING }>: For trading world elites"
"CrystalOre:1186554203435454505":
role: "${ ROLES.CRYSTAL_SHARING }"
description: "<@&${ ROLES.CRYSTAL_SHARING }>: For sharing crystal chunks"
"ClownTao:1186562519167410227":
role: "${ ROLES.FRIENDSHIP }"
description: "<@&${ ROLES.FRIENDSHIP }>: For co-op friendship farming"
# Events Ping
reactroleevents:
title: "React for Events!"
color: ${ COLORS.ELECTRO_PURPLE }
reactions:
"KeqParty:805672780606734347":
role: ${ ROLES.EVENTS_KITTEN }
description: "<@&${ ROLES.EVENTS_KITTEN }>: React here if you want to be notified about future events, including karaoke, game nights & more!"
# NSFW Staff channel
reactrolestaffnsfw:
title: "Staff NSFW Channel Access 18+ Only"
color: ${ COLORS.ELECTRO_PURPLE }
reactions:
"kikin:959474754971127819":
role: ${ ROLES.STAFF.STAFF_LEWD }
description: "<@&${ ROLES.STAFF.STAFF_LEWD }>"
#staff:
# image: "https://cdn.discordapp.com/attachments/945321873418362880/953178188639531078/unknown.png"
# title: "Emergency Staff Allocation"
# description: |-
# This command should only be able to be used by staff. Please gather roles that you think you were missing. Abuse of this command will be punished.
# # Literally ALL staff roles
# permissions:
# whitelist:
# - "${ ROLES.STAFF }"
# - "${ ROLES.PILLAR_STAFF }"
#
# reactions:
# # REACTION EMOJI ID: ROLE
# "kapetayo:904967085170491412":
# role: "${ ROLES.PILLAR_STAFF }"
# description: "Pillar Staff"
modMail:
enabled: true
# This restricts who can open a thread. If this is not set, anyone can open a thread by DMing the bot
#permissions:
# whitelist:
# - "${ ROLES.VERIFIED }"
#ignoreRole: "${ ROLES.MODMAIL_IGNORED }"
channels:
logging: "${ CHANNELS.MODMAIL_LOGGING }"
threads: "${ CHANNELS.MODMAIL_THREADS }"
# Role kits
roleKits:
enabled: true
# This restricts who can use the /rolekits command. if its not set, anyone with the MANAGE_ROLES permission can use the command.
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.PILLAR_STAFF, ROLES.STAFF.WANGSHENG_SCHOLAR, ROLES.STAFF.WANGSHENG_EDITOR, ROLES.VERIFIED ] }
# The kits that are available
kits:
hiatus:
exportAsCommand: true
name: Hiatus
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.PILLAR_HEAD, ROLES.PILLAR_VICE_HEAD ] }
addRoles:
- "${ ROLES.HIATUS }"
removeRoles:
- "${ ROLES.STAFF.YUEHAI_LEAKS_WHISPERER }"
- "${ ROLES.STAFF.WANWEN_LORE_RESEARCHER }"
- "${ ROLES.STAFF.TC_STAFF }"
- "${ ROLES.STAFF.WANGSHENG_EDITOR }"
- "${ ROLES.STAFF.WANGSHENG_SCHOLAR }"
- "${ ROLES.STAFF.WANGSHENG_MONKE }"
- "${ ROLES.STAFF.WFP_TC_STAFF }"
- "${ ROLES.STAFF.WANGSHU_INN }"
- "${ ROLES.STAFF.QINGCE_ART_CURATOR }"
- "${ ROLES.STAFF.GUHUA_GUIDE }"
- "${ ROLES.STAFF.GUHUA_STUDENT }"
- "${ ROLES.STAFF.GUHUA_SCRIBE }"
- "${ ROLES.STAFF.LIVESTREAM_TEAM }"
- "${ ROLES.STAFF.JADE_PALACE_SECRETARY }"
- "${ ROLES.STAFF.FEIYUN_FILM_CREW }"
- "${ ROLES.STAFF.FEIYUN_FILM_VIDEO_EDITOR }"
- "${ ROLES.STAFF.FEIYUN_FILM_SCRIPT_WRITER }"
- "${ ROLES.STAFF.FEIYUN_FILM_CONTENT_QC }"
- "${ ROLES.STAFF.FEIYUN_FILM_VIDEO_QC }"
- "${ ROLES.STAFF.FEIYUN_FILM_GRAMMAR_QC }"
- "${ ROLES.STAFF.FEIYUN_FILM_RECORDER }"
- "${ ROLES.STAFF.FEIYUN_FILM_VOICEOVER }"
- "${ ROLES.STAFF.GUHUA_ADVENTURER }"
- "${ ROLES.STAFF.DIHUA }"
- "${ ROLES.STAFF.YANSHANG_TEAHOUSE_STAFF }"
- "${ ROLES.STAFF.JADE_PALACE }"
- "${ ROLES.STAFF.CRUX_ARTIST }"
- "${ ROLES.STAFF.CRUX_DESIGNER }"
- "${ ROLES.MANAGING_EDITOR }"
- "${ ROLES.STAFF.WANGSHENG_ASST_EDITOR }"
- "${ ROLES.MOD.MILLELITH }"
- "${ ROLES.MOD.SAL_TERRAE_SUBREDDIT }"
wangshengcoffin:
exportAsCommand: true
name: Wangsheng Coffin
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.MOD.MILLELITH, ROLES.MOD.WANGSHENG, ROLES.WANGSHENG_DIRECTOR, ROLES.WANGSHENG_ASST_DIRECTOR ] }
addRoles:
- "${ ROLES.WANGSHENG_COFFIN }"
removeRoles:
- "${ ROLES.THEORYCRAFTER }"
- "${ ROLES.THEORYHUNTER }"
- "${ ROLES.LIBRARY_SUBMISSIONS }"
- "${ ROLES.GUIDE_SUBMISSIONS }"
removewangshengcoffin:
exportAsCommand: true
name: Remove Wangsheng Coffin
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.MOD.MILLELITH, ROLES.MOD.WANGSHENG, ROLES.WANGSHENG_DIRECTOR, ROLES.WANGSHENG_ASST_DIRECTOR ] }
removeRoles:
- "${ ROLES.WANGSHENG_COFFIN }"
guhuacoffin:
exportAsCommand: true
name: Guhua Exile
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.MOD.MILLELITH, ROLES.MOD.GUHUA, ROLES.GUHUA_GUIDE_GRANDMASTER ] }
addRoles:
- "${ ROLES.GUHUA_EXILE }"
removeguhuacoffin:
exportAsCommand: true
name: Remove Guhua Exile
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.MOD.MILLELITH, ROLES.MOD.GUHUA, ROLES.GUHUA_GUIDE_GRANDMASTER ] }
removeRoles:
- "${ ROLES.GUHUA_EXILE }"
offtopiccoffin:
exportAsCommand: true
name: Offtopic Coffin
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.MOD.MILLELITH, ROLES.YUEHAI_LEAKS_HEAD ] }
addRoles:
- "${ ROLES.OFFTOPIC_COFFIN }"
removeRoles:
- "${ ROLES.OFFTOPIC }"
- "${ ROLES.OFFTOPIC_PING }"
removeofftopiccoffin:
exportAsCommand: true
name: Remove Offtopic Coffin
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.MOD.MILLELITH, ROLES.YUEHAI_LEAKS_HEAD ] }
removeRoles:
- "${ ROLES.OFFTOPIC_COFFIN }"
contributor:
exportAsCommand: true
name: Wangsheng Contributor
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.STAFF.WANGSHENG_SCHOLAR, ROLES.STAFF.WANGSHENG_EDITOR, ROLES.WANGSHENG_DIRECTOR, ROLES.WANGSHENG_ASST_DIRECTOR] }
addRoles:
- "${ ROLES.WANGSHENG_CONTRIBUTOR }"
theoryhunter:
exportAsCommand: true
name: Wangsheng Theoryhunter
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.STAFF.WANGSHENG_SCHOLAR, ROLES.STAFF.WANGSHENG_EDITOR, ROLES.WANGSHENG_DIRECTOR, ROLES.WANGSHENG_ASST_DIRECTOR ] }
addRoles:
- "${ ROLES.WANGSHENG_THEORYHUNTER }"
theorycrafter:
exportAsCommand: true
name: Wangsheng Theorycrafter
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN), ROLES.WANGSHENG_DIRECTOR, ROLES.WANGSHENG_ASST_DIRECTOR ] }
addRoles:
- "${ ROLES.WANGSHENG_THEORYCRAFTER }"
whale:
exportAsCommand: true
name: WhaleBTW
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
addRoles:
- "${ ROLES.WHALEBTW }"
kqm:
exportAsCommand: true
name: KeqingMain
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
addRoles:
- "${ ROLES.KEQINGMAIN }"
# Verification Module
verification:
enabled: true
# This restricts who can use the /verification command. if its not set, anyone can use the command.
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
# This sets the channel to use for sending the initialMessage into. If this is not set then the bot will not automatically send the welcome message.
# welcomeChannel: "${ CHANNELS.WELCOME }"
# The role to add to users when they successfully accept the rules.
verifiedRole:
- "${ ROLES.VERIFIED }"
- "${ ROLES.MEDIA }"
interactions:
# You can use this to set a different greeting message. If this is not set then initialMessage is used.
greetingsMessageInteractionPath: "verification/initial_message"
# The initial message displayed when the /verification is run.
initialMessageInteractionPath: "verification/initial_message"
# The interaction to display when the user presses the verification button.
rulesAcknowledgementInteractionPath: "verification/rules_acknowledgement"
# Verification button settings
button:
title: "Verify"
type: "PRIMARY"
supportThreads:
enabled: true
# This restricts who can use the /supportthreads command. if its not set, anyone with MANAGE_THREADS permission can use the command.
permissions:
whitelist: ${ [ ...getValuesRecursive(ROLES.ADMIN) ] }
configs:
main:
# The interaction to display when the command is run.
displayInteractionPath: "verification/arte_test"
# The interaction to display when someone interacts with the supportThreadButton
supportThreadConfirmationInteractionPath: "verification/arte_test"
# The interaction to send in the opened thread
supportThreadDisplayInteractionPath: "verification/arte_test"
# The channel to open the thread in
supportThreadChannel: "945738093766533140"
# Configure the button to open a support thread, if this is not set then a button with the label "HELP" is used
supportThreadButton:
title: "HELP"
type: "PRIMARY"
# Interaction to display when the user clicks the troubleshootButton
troubleshootInteractionPath: "verification/arte_test"
# An optional button that displays an interaction upon clicking. if this is not set, no button is displayed
troubleshootButton:
title: "TROUBLESHOOT"
type: "SUCCESS"
guhuafeedback:
# The interaction to display when the command is run.
displayInteractionPath: "verification/guhua_feedback"
# The interaction to display when someone interacts with the supportThreadButton
supportThreadConfirmationInteractionPath: "verification/guhua_feedback_confirmation"
# The interaction to send in the opened thread
supportThreadDisplayInteractionPath: "verification/guhua_feedback_thread"
# The channel to open the thread in
supportThreadChannel: "${ CHANNELS.GUHUA_FEEDBACK }"
# Configure the button to open a support thread, if this is not set then a button with the label "HELP" is used
supportThreadButton:
title: "Leave Feedback"
type: "PRIMARY"