-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.py
28 lines (27 loc) · 1.31 KB
/
config.py
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
from os import environ as env
class Config:
API_ID = int(env.get("API_ID", "")) #TG API ID
API_HASH = env.get("API_HASH", "") #TG API HASH
BOT_TOKEN = env.get("BOT_TOKEN", "") #Add Bot Token, get from botfather
FSUB_ID = int(env.get("FSUB_ID", "")) #Add Your FSub Channel Id -100xxxxxxxxx
FSUB = bool(env.get("FSUB", True)) #Keep True If U Want Force Subscribe
SB_PIC = env.get("SB_PIC", "https://i.ibb.co/c6vkVBP/photo-2024-11-15-12-13-41-7437478159336865812.jpg") # Add Link For Start Cmd Picture
BOT_USERNAME = env.get("BOT_USERNAME", "Sb_reactionbot") # Add Bot Username Without @
EMOJIS = [
"👍", "👎", "❤", "🔥",
"🥰", "👏", "😁", "🤔",
"🤯", "😱", "🤬", "😢",
"🥶", "🤩", "🤮", "💩",
"🙏", "👌", "🤣", "🤡",
"🥱", "🥴", "😍", "🤓",
"❤🔥", "🌚", "😐", "💯",
"🤣", "⚡", "🍌", "🏆",
"💔", "🤨", "😐", "😡",
"👅", "🆒", "🖕", "😈",
"😴", "😭", "👻", "⚡",
"👨💻", "👀", "🎃", "🙄",
"😇", "😨", "🤝", "🤐",
"🤗", "🫡", "🎅", "🥸",
"🤫", "😶🌫", "🤪", "😏",
"😘", "👾", "🤷♂", "😎"
]