-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.yml
More file actions
1330 lines (1213 loc) · 54.2 KB
/
setup.yml
File metadata and controls
1330 lines (1213 loc) · 54.2 KB
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
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Remove messages like this to ensure the code works. Anything that has a # in front of it are me explaining the commands/functions as best as i can.
prefix: '-' # Put whatever you want here.
levels: # Insert the role ID in the quotations, then set the level of that role that you want. Can be anything from 1-9999. Can have as many as you want.
"role_id": 100
plugins:
post:
replaceDefaultOverrides: true #replaces default settings if true
overrides:
- level: '>=60'
config:
can_post: true #only level 60 can post (use this plugin) # Post is the command that acts as the bot speaking. Example: {-post #channel_name Hello World.}
phisherman:
config:
api_key: "your_api_key_here" # Obtain here:"https://discord.gg/DjTrWnT8"
rules:
# Clean any scam links detected by Phisherman
filter_scam_links:
triggers:
- match_links:
phisherman:
include_suspected: true # It's recommended to keep this enabled to catch new scam domains quickly
include_verified: true
actions:
clean: true
ban: true
auto_reactions:
replaceDefaultOverrides: true
overrides:
- level: '>=60'
config:
can_manage: true
locate_user: # Honestly not sure what this does
replaceDefaultOverrides: true
overrides:
- channel:
- "channel_id" #bot usage
#- channel: *botusage
config:
can_where: true
can_alert: true
slowmode: # Activates slowmode with the time given.
replaceDefaultOverrides: true
config:
use_native_slowmode: true #use discord's built in slowmode (till 6h)
is_affected: true #everyone except those in override are affected
overrides:
- level: '>=60'
config:
can_manage: true #can set and manage slowmode commands
is_affected: false #level 50 and up arent affected by slowmode
cases:
config:
case_log_channel: "channel_id" #cases channel id
mutes: # Mutes the user with the given time and reason.
replaceDefaultOverrides: true #replaces default settings if true
config:
mute_role: "muterole_id" #muterole here
#move_to_voice_channel: "voicechat_id" #vc id
kick_from_voice_channel: true #muted users are also immediately kicked from their current voice channel
dm_on_mute: true
dm_on_update: true #updating mute time informs user
message_on_mute: true
message_on_update: true
message_channel: "channel_id" #home message channel
#mute_message for indefinite mutes
mute_message: |-
**MUTED FOREVER**
You have been perm muted in {guildName} for {reason}
#timed_mute_message for mutes with an expiration time
timed_mute_message: |-
**MUTED**
You have been muted in {guildName} for {time} for {reason}
update_mute_message: |-
**UPDATE TO YOUR MUTED TIME**
{guildName} **YOUR NEW MUTED TIME IS:**{time}
remove_roles_on_mute: true #removes all roles upon mute or : ["role 1", "role 2"] and those specific roles are removed upon mute
restore_roles_on_mute: true #restores the roles when mute is over
can_view_list: true #can view muted list via !mutes command
overrides:
- level: '>=80'
config:
can_view_list: true
- level: '>=80'
config:
#Clear dangling mutes for members who have been banned
can_cleanup: true
mod_actions:
config:
dm_on_warn: true
dm_on_kick: true
dm_on_ban: true
message_on_warn: true
message_on_kick: true
message_on_ban: true
message_channel: "channel_id"
warn_message: |-
<:warning:866043394744123412> **WARNING**
You have been warned on {guildName} server
for {reason}
kick_message: |-
<:case_kick:742540201661825165> **KICKED**
You have been kicked from {guildName} server
for {reason}
ban_message: |-
<:yikes:1234691895817666651> **BANNED**
You have been permenantly banned from {guildName} server
for {reason}
tempban_message: |-
<:yikes:1234691895817666651> **BANNED**
You have been banned from {guildName} server
for {banTime}
{reason}
alert_on_rejoin: true
alert_channel: "moderationlogchannel"
#if you have warn_notify_enabled: true, then warn_notify_threshold is the number of warnings the user must get before the !warn command asks you "hey, this user has already been warned 5 times, warn them again?"
warn_notify_enabled: true
warn_notify_threshold: 5
warn_notify_message: |-
The user already has **{priorWarnings}** warnings!
Please check their prior cases and assess whether or not to warn anyways.
Proceed with the warning?
ban_delete_message_days: 10
can_note: true
can_warn: true
can_mute: true
can_kick: true
can_ban: true
can_unban: true
can_view: true
can_addcase: true
can_massunban: true
can_massban: false
can_massmute: false
can_hidecase: true
can_deletecase: true
#can_act_as_other allows you to use the -mod option for commands such as !ban - this will set the case's moderator as the user you specify, and also mention your name below theirs if you view the case
can_act_as_other: false
#Manual actions wouls be stuff like right click ban, right click kick , it will create cases for those as well
create_cases_for_manual_actions: true
overrides:
- level: '>=60'
config:
can_note: true
can_warn: true
can_mute: true
can_kick: true
can_ban: true
can_unban: true
can_view: true
can_addcase: true
- level: '>=80'
config:
can_massunban: true
can_massban: true
can_massmute: true
can_hidecase: true
can_act_as_other: true
can_deletecase: true
#currently the ban/warn/mutes message only includes the variables guildName, reason, and moderator
utility:
config:
can_roles: true #list or search roles
can_level: true #permission level
can_search: true #search or bansearcg
can_clean: true #clean messages
can_info: true #basic info + other sub modules
can_server: false #serverinfo
can_inviteinfo: true #invite info
can_channelinfo: true #info about channel
can_messageinfo: true #message details
can_userinfo: true #other users info
can_snowflake: true #snowflake info
can_reload_guild: false #reload guild
can_nickname: true #set nickname for others
can_ping: true #can ping bot
can_source: true #can see source of any ID
can_vcmove: false #move someone from vc
can_help: true #see docs help snippet
can_about: true #!about
can_context: true #context of message
can_jumbo: true #jumbo emote
jumbo_size: 128
can_avatar: true
info_on_single_result: true
overrides:
- level: '>=60'
config:
can_roles: true
can_level: true
can_search: true
can_clean: true
can_info: true
can_server: true
can_inviteinfo: true
can_channelinfo: true
can_messageinfo: true
can_userinfo: true
can_snowflake: true
can_nickname: true
can_vcmove: true
can_help: true
can_context: true
can_jumbo: true
can_avatar: true
can_source: true
- level: '>=80'
config:
can_reload_guild: true
can_ping: true
can_about: true
welcome_message:
config:
send_dm: false
message: |-
**Welcome to Server-Name!**
**Invite others with**
https://discord.gg/invitelink
logs: # Define below what you want your logs to show, and what to not show. Include: will show the specified action in the designated channel, exclude: will not show the specified action.
config:
channels:
'channel_id': #members log
include:
- MEMBER_LEAVE
- MEMBER_JOINED
- MEMBER_ROLE_ADD
- MEMBER_ROLE_REMOVE
- MEMBER_NICK_CHANE
- MEMBER_USERNAME_CHANGE
'channel_id': #modlog
include:
- MEMBER_NOTE
- MEMBER_WARN
- MEMBER_TIMED_MUTE
- MEMBER_MUTE
- MEMBER_UNMUTE
- MEMBER_TIMED_UNMUTE
- MEMBER_MUTE_EXPIRED
- MEMBER_KICK
- MEMBER_BAN
- MEMBER_UNBAN
- MEMBER_FORCEBAN
- MEMBER_SOFTBAN
- MEMBER_TIMED_BAN
- MEMBER_TIMED_UNBAN
- MASSUNBAN
- MASSBAN
- MASSMUTE
- MEMBER_MUTE_REJOIN
- CASE_UPDATE
- CASE_CREATE
- CASE_DELETE
- CLEAN
'channel_id': #automod
include:
- AUTOMOD_ACTION
'channel_id': #simpler zep
exclude:
- ROLE_UPDATE
- MEMBER_ROLE_ADD
- MEMBER_ROLE_REMOVE
- CHANNEL_CREATE
- CHANNEL_DELETE
- CASE_DELETE
- CASE_UPDATE
- CASE_CREATE
include:
- MESSAGE_EDIT
- MESSAGE_DELETE
- MESSAGE_DELETE_BULK
- MESSAGE_DELETE_BARE
- MESSAGE_DELETE_AUTO
- THREAD_CREATE
- THREAD_DELETE
'channel_id': #server-log
include:
- CHANNEL_CREATE
- CHANNEL_DELETE
exclude_bots: false
format:
timestamp: "" # Add a timestamp here if you want. If not, leave blank.
CASE_CREATE: >-
✏ {userMention(mod)} manually created new **{caseType}** case
(#{caseNum})
CASE_DELETE:
embed:
description: |-
`[{case.case_number}]`**case deleted** by {userMention(mod)}
color: 0xff6666 #pastel red
thumbnail:
url: "{mod.avatarURL}"
CASE_UPDATE:
embed:
description: |-
`[{caseNumber}]` `[{caseType}]` **case updated** by {userMention(mod)} with note: {note}
color: 0xffb347 #pastel orange
thumbnail:
url: "{mod.avatarURL}"
BOT_ALERT:
embed:
description: |-
**BOT ALERT**
{tmplEval(body)}
color: 0xffb347 #pastel orange
DM_FAILED:
embed:
description: |-
**DM FAILED** Failed to send DM to {userMention(user)}
Source: {source}
thumbnail:
url: "{user.avatarURL}"
# MODERATION
MEMBER_NOTE:
embed:
description: |-
`[{caseNumber}]` **note** on {userMention(user)} by {userMention(mod)}
color: 0xffb347 #pastel orange
thumbnail:
url: "{user.avatarURL}"
MEMBER_WARN:
embed:
description: |-
`[{caseNumber}]` **{userMention(member)} warned** by {userMention(mod)} {reason}
color: 0xfdfd96 #pastel yellow
thumbnail:
url: "{member.avatarURL}"
MEMBER_MUTE:
embed:
description: |-
`[{caseNumber}]` **{userMention(user)} muted forever** by {userMention(mod)} {reason}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MEMBER_TIMED_MUTE:
embed:
description: |-
`[{caseNumber}]` **{userMention(user)} muted** for {time} by {userMention(mod)} {reason}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MASSMUTE: "\U0001F4E2\U0001F6AB {userMention(mod)} massmuted {count} users"
MEMBER_UNMUTE:
embed:
description: |-
`[{caseNumber}]` **<@{user.id}> was unmuted** by {userMention(mod)}> {reason}
color: 0x77dd77 #pastel green
thumbnail:
url: "{user.avatarURL}"
MEMBER_TIMED_UNMUTE:
embed:
description: |-
**{userMention(user)} TIMED UNMUTED** by {userMention(mod)}. Time for mute was {time}
color: 0x77dd77 #pastel green
thumbnail:
url: "{user.avatarURL}"
MEMBER_MUTE_EXPIRED:
embed:
description: |-
{userMention(member)} mute expired
color: 0xfdfd96 #pastel yellow
thumbnail:
url: "{member.avatarURL}"
MEMBER_KICK:
embed:
description: |-
`[{caseNumber}]` **{userMention(user)} KICKED** by {userMention(mod)} {reason}
color: 0xffb347 #pastel orange
thumbnail:
url: "{user.avatarURL}"
MEMBER_BAN:
embed:
description: |-
`[{caseNumber}]` **<@{user.id}> was banned** by {userMention(mod)} {reason}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MEMBER_TIMED_BAN:
embed:
description: |-
`[{caseNumber}]` **{userMention(user)} TEMP BANNED** for {banTime} by {userMention(mod)} for {reason}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MEMBER_FORCEBAN:
embed:
description: |-
`[{caseNumber}]` **{userId} was force banned** by {userMention(mod)} {reason}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MASSBAN:
embed:
description: |-
**{userMention(mod)} massbanned {count} users**
color: 0xff6666 #pastel red
thumbnail:
url: "{mod.avatarURL}"
MEMBER_SOFTBAN:
embed:
description: |-
`[{caseNumber}]` **{userMention(member)}** (created {account_age} ago) **softbanned** by {userMention(mod)}
color: 0xff6666 #pastel red
thumbnail:
url: "{member.avatarURL}"
MEMBER_UNBAN:
embed:
description: |-
`[{caseNumber}]` **{userId} was unbanned** by {userMention(mod)} {reason}
color: 0x77dd77 #pastel green
thumbnail:
url: "{user.avatarURL}"
MEMBER_TIMED_UNBAN:
embed:
description: |-
`[{caseNumber}]` **{userMention(user)} UNBANNED** by {userMention(mod)}. The orignal ban time was {bantime}
color: 0x77dd77 #pastel green
thumbnail:
url: "{user.avatarURL}"
MASSUNBAN:
embed:
description: |-
**{userMention(mod)} mass unbanned {count} users**
color: 0x77dd77 #pastel green
thumbnail:
url: "{mod.avatarURL}"
MEMBER_JOIN:
embed:
description: |-
{userMention(member)} **joined**
Created {account_age} ago
color: 0x77dd77 #pastel green
thumbnail:
url: "{member.avatarURL}"
MEMBER_JOIN_WITH_PRIOR_RECORDS:
embed:
description: |-
**{userMention(member)}** joined with prior records
Summary:{recentCaseSummary}
color: 0xfdfd96 #pastel yellow
thumbnail:
url: "{member.avatarURL}"
MEMBER_MUTE_REJOIN:
embed:
description: |-
**{userMention(member)} mute rejoin**
color: 0xfdfd96 #pastel yellow
thumbnail:
url: "{member.avatarURL}"
MEMBER_RESTORE:
embed:
description: |-
**MEMBER RESTORE** for {userMention(member)}
Data Restored: {restoredData}
color: 0x77dd77 #pastel green
thumbnail:
url: "{member.avatarURL}"
MEMBER_LEAVE:
embed:
description: |-
**{if(member, userMention(member), if(user, userMention(user), if(userId, concat("<@!", userId, ">"), "Unknown")))} left the server**
{if(and(member, member.joinedAt, gt(member.joinedAt, 0)), concat("<:server_join:907937760080429076> <t:", round(div(member.joinedAt, 1000), 0), ":F> <t:", round(div(member.joinedAt, 1000), 0), ":R>"))}
color: 0xff6666 #pastel red
thumbnail:
url: "{member.avatarURL}"
MEMBER_ROLE_ADD:
embed:
description: |-
**{roles}** added to {userMention(member)} by {userMention(mod)}
color: 0x77dd77 #pastel green
thumbnail:
url: "{member.avatarURL}"
MEMBER_ROLE_REMOVE:
embed:
description: |-
**{roles}** removed from {userMention(member)} by {userMention(mod)}
color: 0xff6666 #pastel red
thumbnail:
url: "{member.avatarURL}"
MEMBER_ROLE_CHANGES:
embed:
description: |-
**ROLE CHANGES**
**{removedRoles}** <:join:754438854487965807> **{addedRoles}** for {userMention(member)} by {userMention(mod)}
thumbnail:
url: "{member.avatarURL}"
MEMBER_NICK_CHANGE:
embed:
description: |-
**NICKNAME CHANGE** for {userMention(member)}
`{oldNick}` to **{newNick}**
color: 0xffb347 #pastel orange
thumbnail:
url: "{member.avatarURL}"
MEMBER_USERNAME_CHANGE:
embed:
description: |-
**USER CHANGE** by {userMention(user)}
`{oldName}` to `{newName}`
color: 0xffb347 #pastel orange
thumbnail:
url: "{user.avatarURL}"
CHANNEL_CREATE:
embed:
description: |-
**CHANNEL CREATE** <#{channel.id}>
color: 0x77dd77 #pastel green
CHANNEL_DELETE:
embed:
description: |-
**CHANNEL DELETE** {channel.name}
color: 0xff6666 #pastel red
CHANNEL_UPDATE:
embed:
description: |-
Channel {channelMention(newChannel)} was edited.
Changes: {differenceString}
color: 0xffb347 #pastel orange
THREAD_CREATE:
embed:
description: |-
Thread {channelMention(thread)} was created in channel <#{thread.parentId}>
color: 0x77dd77 #pastel green
THREAD_DELETE:
embed:
description: |-
Thread {channelMention(thread)} was deleted/archived from channel <#{thread.parentId}>
color: 0xff6666 #pastel red
THREAD_UPDATE:
embed:
description: |-
Thread {channelMention(newThread)} was edited.
{differenceString}
color: 0xffb347 #pastel orange
STAGE_INSTANCE_CREATE:
embed:
description: |-
Stage Instance `{stageInstance.topic}` was created in Stage Channel <#{stageChannel.id}>
color: 0x77dd77 #pastel green
STAGE_INSTANCE_DELETE:
embed:
description: |-
Stage Instance `{stageInstance.topic}` was deleted in Stage Channel <#{stageChannel.id}>
color: 0xff6666 #pastel red
STAGE_INSTANCE_UPDATE:
embed:
description: |-
Stage Instance `{newStageInstance.topic}` was edited in Stage Channel <#{stageChannel.id}>.
Changes: {differenceString}
color: 0xffb347 #pastel orange
EMOJI_CREATE:
embed:
description: |-
{emoji.mention} Emoji **{emoji.name}** (`{emoji.id}`) was created
color: 0x77dd77 #pastel green
EMOJI_DELETE:
embed:
description: |-
Emoji **{emoji.name}** (`{emoji.id}`) was deleted
color: 0xff6666 #pastel red
EMOJI_UPDATE:
embed:
description: |-
{newEmoji.mention} Emoji **{newEmoji.name}** (`{newEmoji.id}`) was updated.
Changes:
{differenceString}
color: 0xffb347 #pastel orange
STICKER_CREATE:
embed:
description: |-
Sticker `{sticker.name} ({sticker.id})` was created. Description: `{sticker.description}` Format: {emoji.format}
color: 0x77dd77 #pastel green
STICKER_DELETE:
embed:
description: |-
Sticker `{sticker.name} ({sticker.id})` was deleted.
color: 0xff6666 #pastel red
STICKER_UPDATE:
embed:
description: |-
Sticker `{newSticker.name} ({sticker.id})` was updated.
Changes: {differenceString}
color: 0xffb347 #pastel orange
#channel
CHANNEL_EDIT:
embed:
description: |-
**CHANNEL EDIT** <#{channel.id}>
color: 0xffb347 #pastel orange
#roles
ROLE_CREATE:
embed:
description: |-
<:statusonline:714853868420202529> **ROLE CREATE**
<@&{role.id}> **{role.name}**
color: 0x77dd77 #pastel green
ROLE_DELETE:
embed:
description: |-
**ROLE DELETE**
**{role.name}** `{role.id}`
color: 0xff6666 #pastel red
ROLE_EDIT:
embed:
description: |-
**ROLE EDITED**
<@&{role.id}> **{role.name}**
ROLE_UPDATE:
embed:
description: |-
**ROLE UPDATE**
Role **{newRole.name}** (`{newRole.id}`) was edited.
Changes:{differenceString}
color: 0xffb347 #pastel orange
#Messages
MESSAGE_EDIT:
embed:
# UPDATE THE SERVER ID IN THE LINK BELOW!
description: |-
**[MESSAGE EDITED](https://discord.com/channels/691884089632096279/{channel.id}/{after.id})** by {userMention(user)} in <#{channel.id}>
**Before:**{messageSummary(before)}**After:**{messageSummary(after)}
color: 0xffb347 #pastel orange
thumbnail:
url: "{user.avatarURL}"
MESSAGE_DELETE:
embed:
description: |-
**MESSAGE DELETE** by {userMention(user)} in <#{channel.id}>
Message: {message.data.content}
{messageSummary(message)}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MESSAGE_DELETE_BULK:
embed:
description: |-
**[{count} MESSAGE DELETE]({archiveUrl})** by {authorIds} in <#{channel.id}>
{messageSummary(message)}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
MESSAGE_DELETE_BARE:
embed:
description: |-
**MESSAGE DELETE BARE** `{message.id}`
in <#{channel.id}> {messageSummary(message)}
color: 0xff6666 #pastel red
MESSAGE_DELETE_AUTO:
embed:
description: |-
**AUTO DELETE** `{message.id}`
by <@{user.id}> in <#{channel.id}> {messageSummary(message)}
color: 0xff6666 #pastel red
thumbnail:
url: "{user.avatarURL}"
CLEAN:
embed:
description: |-
**[{count} MESSAGE CLEAN]({archiveUrl})** by {userMention(mod)} in <#{channel.id}>
color: 0xff6666 #pastel red
thumbnail:
url: "{mod.avatarURL}"
VOICE_CHANNEL_JOIN:
embed:
description: |-
**VC JOIN** by {userMention(member)} in <#{channel.id}>
color: 0x77dd77 #pastel green
thumbnail:
url: "{member.avatarURL}"
VOICE_CHANNEL_MOVE:
embed:
description: |-
**VC MOVE** <#{oldChannel.id}> to <#{newChannel.id}> by {userMention(member)}
color: 0xffb347 #pastel orange
thumbnail:
url: "{member.avatarURL}"
VOICE_CHANNEL_FORCE_MOVE:
embed:
description: |-
**VC FORCE MOVE** {userMention(member)} moved by {userMention(mod)}
<#{oldChannel.id}> to <#{newChannel.id}>
VOICE_CHANNEL_LEAVE:
embed:
description: |-
**VC LEAVE** by {userMention(member)} in <#{channel.id}>
color: 0xff6666 #pastel red
thumbnail:
url: "{member.avatarURL}"
VOICE_CHANNEL_FORCE_DISCONNECT:
embed:
description: |-
**VC FORCE DISCONNECT**
for <@{member.id}> from <#{oldChannel.id}> by {userMention(mod)}
color: 0xff6666 #pastel red
thumbnail:
url: "{member.avatarURL}"
auto_delete: # Auto deletes messages in the designated channel. I left it off because I don't have a need for it.
config:
enabled: false
delay: 5s
overrides:
- channel: "channel_id" #channel id
config:
enabled: true
delay: 5s
- level: '>=50' #mods are not affected as its disabled for them
config:
enabled: false
companion_channels:
config:
entries:
public_vcs: #name of the entry, could be anything
voice_channel_ids:
- "channel_id" #gaming vc
- "channel_id" #movies vc
text_channel_ids:
- "channel_id" # vc text
#this can be calculated using https://discordapi.com/permissions.html
permissions: 1024
enabled: false
persist: # These roles are meant for your staff. Change it accordingly.
config:
persisted_roles:
- "role_id" #staff 1
- "role_id" #staff 2
persist_nicknames: true
persist_voice_mutes: true
self_grantable_roles: # Roles you can allow members to add to themselves. Add enabled: false if you dont want this.
config:
entries:
basic: #you can have many entries and name them as u like
roles:
"791415457877065798": ["member"] #can have options too!
can_use: true #can use this entry? since we can have multiple!
can_ignore_cooldown: true #does nothing i guess? not sure ask #support
max_roles: 1 #maximum no of roles user can pick from the list
mention_roles: true #mentions the role itself (but no ping)
roles:
config:
assignable_roles: #roles u can add to another user
- 'role_id' #role 1
- 'role_id' #role 1
- 'role_id' #role 1
overrides:
- level: '>=110'
config:
can_assign: true #level 110 and up can assign
- level: '>=110'
config:
can_mass_assign: true # level 110 can mass assign and remove roles
starboard:
config:
boards:
basic:
channel_id: "channel_id"
stars_required: 5
tags:
config:
prefix: "-"
delete_with_command: true ##delete_with_command would delete the bot response when the original message is deleted
user_tag_cooldown: null #user_tag_cooldown is the cooldown per user per tag
global_tag_cooldown: null #global_tag_cooldown is the global cooldown (server wide) per tag
user_cooldown: 10s #user_cooldown is the cooldown per user (not tag specific)
allow_mentions: false #allow tags to ping?, Can be enabled conditionally via overrides for e.g. only moderators
global_cooldown: null #global_cooldown is the global cooldown (server wide) (not tag specific)
auto_delete_command: false #When turned on, the message triggering a tag will be automatically deleted after the tag is posted
can_create: false
can_use: true
can_list: true
categories:
"mental":
tags:
"health":
embed:
title: "Mental Health Resources"
color: 0xFF0000
footer:
text: "Remember, You Matter <3"
icon_url: https://media.discordapp.net/attachments/770256340639416320/854689949193076737/Medical_31-60_974.jpg?width=523&height=523
#image:
#url: https://i.pinimg.com/originals/f6/f6/e6/f6f6e629e0bb1ab4ef763c12b5457074.png
thumbnail:
url: https://media.discordapp.net/attachments/770256340639416320/854690141279748096/PngItem_4479310.png?width=523&height=523
fields:
- name: "**National Suicide Prevention Hotline (U.S.):**"
value: |
**Call:** 1-800-273-8255, available 24/7 for emotional support
**Text: HOME** to 741741
https://suicidepreventionlifeline.org/chat/
Outside the U.S: Find a supportive resource on [this Wikipedia list of worldwide crisis hotlines](https://en.wikipedia.org/wiki/List_of_suicide_crisis_lines)
inline: false
- name: "**More Support**"
value: |
For Substance Abuse Support, Eating Disorder Support & Child Abuse and Domestic Violence:
[Click to go to Discord's Health & Safety Page](https://discord.com/safety/360044103771-Mental-health-on-Discord#h_01EGRGT08QSZ5BNCH2E9HN0NYV)
"commands":
:tags:
embed:
title: "Zeppelin Commands"
color: 0x2f3136 #blank
fields:
- name: "**Mod actions**"
value: |
**__?addcase__** - Add an arbitrary case to the specified user without taking any action
**__?ban/?ban <time>__** - Ban or Tempban the specified member
**__?case__** - Show information about a specific case
**__?cases/?modlogs__** - Show a list of cases the specified user has
**__?cases / ?modlogs / ?infractions__** - Show the most recent 5 cases by the specified -mod
**__?delete_case / ?deletecase__** - Delete the specified case. This operation can not be reversed. It is generally recommended to use `!hidecase` instead when possible.
**__?forceban__** - Force-ban the specified user, even if they aren't on the server
**__?forcemute__**- Force mute the specified user, even if they're not on the server
inline: false
- name: "**------**"
value: |
**__?forceunmute__** - Force unmute the specified user, even if they're not on the server
**__?hide / ?hidecase / ?hide_case__ **- Hide the specified case so it doesn't appear in `?cases` or `?info`
**__?kick__** - Kick the specified member
**__?massban__** - Mass ban a list of user IDs
**__?massmute__** - Mass mute a list of user IDs
**__?massunban__** - Mass unban a list of user IDs
**__?unban__** - Unban the specified member
**__?mute__** - Mute the specified member
inline: false
- name: "**------**"
value: |
**__?note__** - Add a note to the specified user
**__?unhide / ?unhidecase / ?unhide_case__** - Unhide the specified case, making it appear in `?cases` and `?info` again
**__?unmute__** - Unmute the specified member
**__?update / ?reason__** - Update the specified case (or, if case number is omitted, your latest case) by adding more notes/details to it
**__?warn__** - Send a warning to the specified user
inline: false
- name: "**------**"
value: |
**__?bansearch / ?bs__** - Search banned users. Basic usage: `?bansearch <user>`
**__?clean / ?clear__** - Remove a number of recent messages. Basic usage: `?clean 20`
**__?vcdisconnect / ?vcdisc / ?vcdc / ?vckick / ?vck__** - Disconnect a member from their voice channel. Basic usage: `?vcdc <@user>`
**__?vcmove__** - Move a member to another voice channel. Basic usage: `?vcmove <@user> 473223047822704651`
**__?vcmoveall__** - Move all members of a voice channel to another voice channel. Basic usage: `?vcmoveall 551767166395875334 767497573560352798
"misc":
tags:
"misc":
embed:
title: "Misc Commands"
color: 0x2f3136 #blank
fields:
- name: "**Post**"
value: |
**__?edit__**
**__?edit_embed__**
**__?post__**
**__?post_embed__** - Optional: `<channel> <maincontent> [-title] [-content] [-color] [-raw] [-schedule] [-repeat] [-repeat-until] [-repeat-times]`
**__?scheduled_posts / ?scheduled_posts show__**
**__?scheduled_posts / ?scheduled_posts list__**
**__?scheduled_posts delete / ?scheduled_posts d__**
inline: false
- name: "**Reminders**"
value: |
**__?remind / ?remindme / ?reminder __**- Basic usage: `?remind 3h Remind me of this in 3 hours please`
**__?reminders__**
**__?reminders delete / ?reminders d__**
inline: false
- name: "**Utilities**"
value: |
**__?context__** - Get a link to the context of the specified message. Basic usage: `!context 94882524378968064 650391267720822785`
**__?help__** - Show a quick reference for the specified command's usage. Basic usage: `!help clean`
**__?info__** - Show information about the specified thing. Basic usage: `?info`
**__?invite / ?inviteinfo__** - Show information about an invite. Basic usage: !invite overwatch
**__?jumbo__** - Makes an emoji jumbo
**__?message / ?messageinfo__** - Show information about a message. Basic usage: `?message 534722016549404673-534722219696455701`
**__?nickname / ?nick__** - Set a member's nickname. Basic usage: `?nickname 106391128718245888 <nickname>`
**__?nickname reset / ?nick reset__** - Reset a member's nickname to their username. Basic usage: `?nickname reset 106391128718245888`
inline: false
- name: "**------**"
value: |
**__?context__** - Get a link to the context of the specified message. Basic usage: `!context 94882524378968064 650391267720822785`
**__?help__** - Show a quick reference for the specified command's usage. Basic usage: `!help clean`
**__?info__** - Show information about the specified thing. Basic usage: `?info`
**__?invite / ?inviteinfo__** - Show information about an invite. Basic usage: !invite overwatch
**__?jumbo__** - Makes an emoji jumbo
**__?message / ?messageinfo__** - Show information about a message. Basic usage: `?message 534722016549404673-534722219696455701`
**__?nickname / ?nick__** - Set a member's nickname. Basic usage: `?nickname 106391128718245888 <nickname>`
**__?nickname reset / ?nick reset__** - Reset a member's nickname to their username. Basic usage: `?nickname reset 106391128718245888`
inline: false
- name: "**------**"
value: |
**__?ping__** - Test the bot's ping to the Discord API
**__?reload_guild__** - Reload the Zeppelin configuration and all plugins for the server. This can sometimes fix issues.
**__?roles__** - List all roles or roles matching a search.
**__?search / ?s__** - Search server members
**__?server / ?serverinfo__** - Show server information
**__?source__** - View the message source of the specified message id. Basic usage: `?source 534722219696455701`
**__?user / ?userinfo / ?whois__** - Show information about a user
counters: # Counters are like Wick's heat system. When a user trips the system too many times, then the actions specified will occur. Such as banning, a kick, etc.
config:
counters:
automod_infractions:
per_user: true
triggers:
# When a user accumulates 100 or more (>=100) automod infraction points, this trigger will activate
# The numbers here are arbitrary - you could choose to use 10 or 1000 instead.
too_many_infractions:
condition: ">=45"