|
|
|
|
|
|
|
|
|
|
|
from pyrogram.types import InlineKeyboardButton as ib |
|
from telegram import InlineKeyboardButton |
|
|
|
from Mikobot import BOT_USERNAME, OWNER_ID, SUPPORT_CHAT |
|
|
|
|
|
START_IMG = [ |
|
"https://files.catbox.moe/1ih5hx.jpg" |
|
] |
|
|
|
HEY_IMG = "https://files.catbox.moe/1ih5hx.jpg" |
|
|
|
ALIVE_ANIMATION = [ |
|
"https://files.catbox.moe/cgzd9n.jpg" |
|
] |
|
|
|
FIRST_PART_TEXT = "β¨ *Κα΄ΚΚα΄* `{}` . . ." |
|
|
|
PM_START_TEXT = "β¨ *Ιͺ α΄α΄ α΄Ιͺα΄α΄, α΄ Ι’α΄Ι΄κ±ΚΙͺΙ΄ Ιͺα΄α΄α΄α΄α΄ α΄Κα΄α΄α΄α΄
Κα΄Κα΄α΄ α΄‘ΚΙͺα΄Κ α΄α΄Ι΄ Κα΄Κα΄ Κα΄α΄ α΄α΄ α΄α΄Ι΄α΄Ι’α΄ α΄Ι΄α΄
κ±α΄α΄α΄Κα΄ Κα΄α΄Κ Ι’Κα΄α΄α΄ α΄‘Ιͺα΄Κ Κα΄Ι’α΄ Ι’Κα΄α΄α΄ α΄α΄Ι΄α΄Ι’α΄α΄α΄Ι΄α΄*" |
|
|
|
START_BTN = [ |
|
[ |
|
InlineKeyboardButton( |
|
text="β¦ ADD ME β¨", |
|
url=f"https://t.me/{BOT_USERNAME}?startgroup=true", |
|
), |
|
], |
|
[ |
|
InlineKeyboardButton(text="HELP", callback_data="extra_command_handler"), |
|
], |
|
[ |
|
InlineKeyboardButton(text="DETAILS", callback_data="Miko_"), |
|
InlineKeyboardButton(text="SOURCE", callback_data="git_source"), |
|
], |
|
[ |
|
InlineKeyboardButton(text="CREATOR", url=f"tg://user?id={OWNER_ID}"), |
|
], |
|
] |
|
|
|
GROUP_START_BTN = [ |
|
[ |
|
InlineKeyboardButton( |
|
text="β¦ ADD ME β¨", |
|
url=f"https://t.me/{BOT_USERNAME}?startgroup=true", |
|
), |
|
], |
|
[ |
|
InlineKeyboardButton(text="SUPPORT", url=f"https://t.me/{SUPPORT_CHAT}"), |
|
InlineKeyboardButton(text="CREATOR", url=f"tg://user?id={OWNER_ID}"), |
|
], |
|
] |
|
|
|
ALIVE_BTN = [ |
|
[ |
|
ib(text="UPDATES", url="https://t.me/Serene_Swordsman"), |
|
ib(text="SUPPORT", url="https://t.me/dragbackup"), |
|
], |
|
[ |
|
ib( |
|
text="β¦ ADD ME β¨", |
|
url=f"https://t.me/{BOT_USERNAME}?startgroup=true", |
|
), |
|
], |
|
] |
|
|
|
HELP_STRINGS = """ |
|
π«§ *πππ πππ’π‘π ππππππππ* π«§ [γ
€](https://files.catbox.moe/3tga8b.jpg) |
|
|
|
β *Here, you will find a list of all the available commands.* |
|
|
|
α΄ΚΚ α΄α΄α΄α΄α΄Ι΄α΄
s α΄α΄Ι΄ Κα΄ α΄sα΄α΄
α΄‘Ιͺα΄Κ : / |
|
""" |
|
|