113 lines
3.2 KiB
Python
113 lines
3.2 KiB
Python
import os
|
|
|
|
YTDL_OPTIONS = {
|
|
"color": "never",
|
|
"default_search": "auto",
|
|
"format": "bestaudio/best",
|
|
"ignoreerrors": False,
|
|
"logtostderr": False,
|
|
"no_warnings": True,
|
|
"noplaylist": True,
|
|
"outtmpl": "%(extractor)s-%(id)s-%(title)s.%(ext)s",
|
|
"quiet": True,
|
|
"restrictfilenames": True,
|
|
"socket_timeout": 15,
|
|
"source_address": "0.0.0.0",
|
|
}
|
|
|
|
BAR_LENGTH = 35
|
|
EMBED_COLOR = 0xFF6600
|
|
OWNERS = [531392146767347712]
|
|
PREFIX = "%"
|
|
SPONSORBLOCK_CATEGORY_NAMES = {
|
|
"music_offtopic": "non-music",
|
|
"selfpromo": "self promotion",
|
|
"sponsor": "sponsored",
|
|
}
|
|
REACTIONS = {
|
|
"cat": ["🐈"],
|
|
"dog": ["🐕"],
|
|
"gn": ["💤", "😪", "😴", "🛌"],
|
|
"pizza": ["🍕"],
|
|
}
|
|
RELOADABLE_MODULES = [
|
|
"arguments",
|
|
"audio",
|
|
"audio.discord",
|
|
"audio.queue",
|
|
"audio.utils",
|
|
"audio.youtubedl",
|
|
"commands",
|
|
"commands.bot",
|
|
"commands.tools",
|
|
"commands.utils",
|
|
"commands.voice",
|
|
"commands.voice.channel",
|
|
"commands.voice.playback",
|
|
"commands.voice.playing",
|
|
"commands.voice.queue",
|
|
"commands.voice.sponsorblock",
|
|
"commands.voice.utils",
|
|
"constants",
|
|
"core",
|
|
"events",
|
|
"extra",
|
|
"fun",
|
|
"sponsorblock",
|
|
"tasks",
|
|
"utils",
|
|
"utils.common",
|
|
"utils.discord",
|
|
"voice",
|
|
"yt_dlp",
|
|
"yt_dlp.version",
|
|
]
|
|
PUBLIC_FLAGS = {
|
|
1 << 0: "Discord Employee",
|
|
1 << 1: "Discord Partner",
|
|
1 << 2: "HypeSquad Events",
|
|
1 << 3: "Bug Hunter Level 1",
|
|
1 << 6: "HypeSquad Bravery",
|
|
1 << 7: "HypeSquad Brilliance",
|
|
1 << 8: "HypeSquad Balance",
|
|
1 << 9: "Early Supporter",
|
|
1 << 10: "Team User",
|
|
1 << 14: "Bug Hunter Level 2",
|
|
1 << 16: "Verified Bot",
|
|
1 << 17: "Verified Bot Developer",
|
|
1 << 18: "Discord Certified Moderator",
|
|
1 << 19: "HTTP Interactions Only",
|
|
1 << 22: "Active Developer",
|
|
}
|
|
BADGE_EMOJIS = {
|
|
"Discord Employee": "<:DiscordStaff:879666899980546068>",
|
|
"Discord Partner": "<:DiscordPartner:879668340434534400>",
|
|
"HypeSquad Events": "<:HypeSquadEvents:879666970310606848>",
|
|
"Bug Hunter Level 1": "<:BugHunter1:879666851448234014>",
|
|
"HypeSquad Bravery": "<:HypeSquadBravery:879666945153175612>",
|
|
"HypeSquad Brilliance": "<:HypeSquadBrilliance:879666956884643861>",
|
|
"HypeSquad Balance": "<:HypeSquadBalance:879666934717771786>",
|
|
"Early Supporter": "<:EarlySupporter:879666916493496400>",
|
|
"Team User": "<:TeamUser:890866907996127305>",
|
|
"Bug Hunter Level 2": "<:BugHunter2:879666866971357224>",
|
|
"Verified Bot": "<:VerifiedBot:879670687554498591>",
|
|
"Verified Bot Developer": "<:VerifiedBotDeveloper:879669786550890507>",
|
|
"Discord Certified Moderator": "<:DiscordModerator:879666882976837654>",
|
|
"HTTP Interactions Only": "<:HTTPInteractionsOnly:1047141867806015559>",
|
|
"Active Developer": "<:ActiveDeveloper:1047141451244523592>",
|
|
}
|
|
APPLICATION_FLAGS = {
|
|
1 << 12: "Presence Intent",
|
|
1 << 13: "Presence Intent (unverified)",
|
|
1 << 14: "Guild Members Intent",
|
|
1 << 15: "Guild Members Intent (unverified)",
|
|
1 << 16: "Unusual Growth (verification suspended)",
|
|
1 << 18: "Message Content Intent",
|
|
1 << 19: "Message Content Intent (unverified)",
|
|
1 << 23: "Suports Application Commands",
|
|
}
|
|
|
|
SECRETS = {
|
|
"TOKEN": os.getenv("BOT_TOKEN"),
|
|
}
|