Skip to content

Commit

Permalink
Create inline.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Badhacker98 authored Oct 11, 2024
1 parent bda5a40 commit 6c7e9b2
Showing 1 changed file with 146 additions and 0 deletions.
146 changes: 146 additions & 0 deletions shizuchat/modules/helpers/inline.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
from pyrogram.types import InlineKeyboardButton

from config import SUPPORT_GRP, UPDATE_CHNL
from shizuchat import OWNER, shizuchat


START_BOT = [
[
InlineKeyboardButton(
text="😍 ᴀᴅᴅ ᴍᴇ ɪɴ ʏᴏᴜʀ ɢʀᴏᴜᴘ 😍",
url=f"https://t.me/{shizuchat.username}?startgroup=true",
),
],
[
InlineKeyboardButton(text="🥀 ᴏᴡɴᴇʀ 🥀", user_id=OWNER),
InlineKeyboardButton(text="✨ ꜱᴜᴘᴘᴏʀᴛ ✨", url=f"https://t.me/{SUPPORT_GRP}"),
],
[
InlineKeyboardButton(text="« ғᴇᴀᴛᴜʀᴇs »", callback_data="HELP"),
],
]


DEV_OP = [
[
InlineKeyboardButton(text="🥀 ᴏᴡɴᴇʀ 🥀", user_id=OWNER),
InlineKeyboardButton(text="✨ ꜱᴜᴘᴘᴏʀᴛ ✨", url=f"https://t.me/{SUPPORT_GRP}"),
],
[
InlineKeyboardButton(
text="✦ ᴀᴅᴅ ᴍᴇ ʙᴀʙʏ ✦",
url=f"https://t.me/{shizuchat.username}?startgroup=true",
),
],
[
InlineKeyboardButton(text="« ʜᴇʟᴘ »", callback_data="HELP"),
],
[
# InlineKeyboardButton(text="❄️ sᴏᴜʀᴄᴇ ❄️", callback_data="SOURCE"),
InlineKeyboardButton(text="☁️ ᴀʙᴏᴜᴛ ☁️", callback_data="ABOUT"),
],
]

PNG_BTN = [
[
InlineKeyboardButton(
text="😍 ᴀᴅᴅ ᴍᴇ ʙᴀʙʏ 😍",
url=f"https://t.me/{shizuchat.username}?startgroup=true",
),
],
[
InlineKeyboardButton(
text="⦿ ᴄʟᴏsᴇ ⦿",
callback_data="CLOSE",
),
],
]


BACK = [
[
InlineKeyboardButton(text="⦿ ʙᴀᴄᴋ ⦿", callback_data="BACK"),
],
]


HELP_BTN = [
[
InlineKeyboardButton(text="🐳 ᴄʜᴀᴛʙᴏᴛ 🐳", callback_data="CHATBOT_CMD"),
InlineKeyboardButton(text="🎄 ᴛᴏᴏʟs 🎄", callback_data="TOOLS_DATA"),
],
[
InlineKeyboardButton(text="⦿ ᴄʟᴏsᴇ ⦿", callback_data="CLOSE"),
],
]


CLOSE_BTN = [
[
InlineKeyboardButton(text="⦿ ᴄʟᴏsᴇ ⦿", callback_data="CLOSE"),
],
]


CHATBOT_ON = [
[
InlineKeyboardButton(text="ᴇɴᴀʙʟᴇ", callback_data="enable_chatbot"),
InlineKeyboardButton(text="ᴅɪsᴀʙʟᴇ", callback_data="disable_chatbot"),
],
]


MUSIC_BACK_BTN = [
[
InlineKeyboardButton(text="sᴏᴏɴ", callback_data=f"soom"),
],
]

S_BACK = [
[
InlineKeyboardButton(text="⦿ ʙᴀᴄᴋ ⦿", callback_data="SBACK"),
InlineKeyboardButton(text="⦿ ᴄʟᴏsᴇ ⦿", callback_data="CLOSE"),
],
]


CHATBOT_BACK = [
[
InlineKeyboardButton(text="⦿ ʙᴀᴄᴋ ⦿", callback_data="CHATBOT_BACK"),
InlineKeyboardButton(text="⦿ ᴄʟᴏsᴇ ⦿", callback_data="CLOSE"),
],
]


HELP_START = [
[
InlineKeyboardButton(text="« ʜᴇʟᴘ »", callback_data="HELP"),
InlineKeyboardButton(text="🐳 ᴄʟᴏsᴇ 🐳", callback_data="CLOSE"),
],
]


HELP_BUTN = [
[
InlineKeyboardButton(
text="« ʜᴇʟᴘ »", url=f"https://t.me/{shizuchat.username}?start=help"
),
InlineKeyboardButton(text="⦿ ᴄʟᴏsᴇ ⦿", callback_data="CLOSE"),
],
]


ABOUT_BTN = [
[
InlineKeyboardButton(text="🎄 sᴜᴘᴘᴏʀᴛ 🎄", url=f"https://t.me/{SUPPORT_GRP}"),
InlineKeyboardButton(text="« ʜᴇʟᴘ »", callback_data="HELP"),
],
[
InlineKeyboardButton(text="🍾 ᴏᴡɴᴇʀ 🍾", user_id=OWNER),
# InlineKeyboardButton(text="❄️ sᴏᴜʀᴄᴇ ❄️", callback_data="SOURCE"),
],
[
InlineKeyboardButton(text="🐳 ᴜᴘᴅᴀᴛᴇs 🐳", url=f"https://t.me/{UPDATE_CHNL}"),
InlineKeyboardButton(text="⦿ ʙᴀᴄᴋ ⦿", callback_data="BACK"),
],
]

0 comments on commit 6c7e9b2

Please sign in to comment.