2025-05-07 16:44:50 +02:00
|
|
|
import os
|
|
|
|
|
|
|
|
# Directories
|
|
|
|
COMMANDS_DIR = "commands"
|
|
|
|
DOWNLOADS_DIR = "downloads"
|
|
|
|
|
|
|
|
# Files
|
|
|
|
TRACKED_CHANNELS_FILE = "tracked_channels.json"
|
|
|
|
|
|
|
|
# User IDs for special handling
|
|
|
|
BLACKLISTED_USERS = []
|
|
|
|
BUCKET_REACT_USERS = []
|
|
|
|
AUTO_DELETE_USERS = []
|
|
|
|
SPECIAL_RESPONSES = {
|
2025-05-07 17:25:18 +02:00
|
|
|
# 1236667927944761396: {"trigger": "<@1168626335942455326>", "response": "shut the fuck up"}
|
2025-05-07 16:44:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Channels
|
2025-05-07 17:25:18 +02:00
|
|
|
WELCOME_BACK_CHANNEL_ID = 0
|