File size: 2,454 Bytes
f45efbd 88be7bd 8cca1c3 88be7bd f45efbd 8cca1c3 f45efbd 88be7bd 8cca1c3 88be7bd f45efbd 88be7bd f45efbd 8cca1c3 f45efbd 8cca1c3 f45efbd |
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# https://github.com/Infamous-Hydra/YaeMiko
# https://github.com/Team-ProjectCodeX
# https://t.me/O_okarma
# <============================================== IMPORTS =========================================================>
from pyrogram.types import InlineKeyboardButton as ib
from telegram import InlineKeyboardButton
from Mikobot import BOT_USERNAME, OWNER_ID, SUPPORT_CHAT
# <============================================== CONSTANTS =========================================================>
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α΄α΄
α΄‘Ιͺα΄Κ : /
"""
|