-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOTES
More file actions
39 lines (23 loc) · 1.56 KB
/
NOTES
File metadata and controls
39 lines (23 loc) · 1.56 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
THIS IS NOTES FOR THE CODE AND INSTRUCTIONS IN MAIN.PY
this file is primarily made for people who aren't me to look at my code and understand it. especially if you want to copy this then you'll probably want to know how it works so you can de-bug and fix any potential issues.
first off, WHAT THE NOTES MEAN!!!
if i have a message like
'''START OF MUSIC AND VOICE CHANNEL RELATED COMMANDS'''
this means the start of a MAJOR section and any commands you add that fits into the catergory goes there. that message specifically marks the beginning of a major section, the same message but with "END OF...." marks the end of a section.
if i have a message like
#VOICE CHANNEL JOIN COMMAND
this means that this is the start of a full command, in this case, the command for MonarchBot to join a voice channel. KEEP IN MIND THESE ARE ALL UPPERCASE!
if i have a message like
#code above to specify options in ydl
this means that this is a minor note in my code to help me or you, to understand or remember what it does. This is to prevent me or you in the future going "hmmm what does this do again?" KEEP IN MIND THESE ARE ALL LOWERCASE!
REQUIRED PACKAGES: discord.py, discord, flask, youtube-dl, PyNaCl
INDEX:
IMPORTS: lines 15-35
IMPORTANT STUFF: lines 41-119, 1595-1600
MODERATION COMMANDS: lines 121-247
TEST-BED COMMANDS: lines 249-267
MUSIC AND VOICE CHANNEL RELATED COMMANDS: lines 269-476
VOICE CHANNELS SOUNDBOARD COMMANDS: lines 478-769
GAME RELATED COMMANDS: lines 771-910
RESPONSES OR RELATED COMMANDS: lines 912-1332
EMOJIS OR RELATED COMMANDS: lines 1334-1593