Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions plugins/start_&_cb.py

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update start_&_cb.py

Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ async def start(client, message):
user = message.from_user
await AshutoshGoswami24.add_user(client, message)
button = InlineKeyboardMarkup([
[InlineKeyboardButton('🔊 Updates', url='https://t.me/PandaWep'),
InlineKeyboardButton('♻️ Sᴜᴩᴩᴏʀᴛ', url='https://t.me/PandaWepChat')],
[InlineKeyboardButton('🔊 Updates', url='https://t.me/Anime_Universe_In_Hindi_Dub'),
InlineKeyboardButton('♻️ Sᴜᴩᴩᴏʀᴛ', url='https://t.me/ABOUT_ll_KAKASHI_xd_lll')],
[InlineKeyboardButton('❤️‍🩹 About', callback_data='about'),
InlineKeyboardButton('🛠️ Help', callback_data='help')],
[InlineKeyboardButton("👨‍💻 Developer", url='https://t.me/AshutoshGoswami24')]
[InlineKeyboardButton("👨‍💻 Developer", url='https://t.me/iwant2boobies')]
])
if Config.START_PIC:
await message.reply_photo(Config.START_PIC, caption=Txt.START_TXT.format(user.mention), reply_markup=button)
Expand All @@ -31,19 +31,19 @@ async def cb_handler(client, query: CallbackQuery):
text=Txt.START_TXT.format(query.from_user.mention),
disable_web_page_preview=True,
reply_markup = InlineKeyboardMarkup([
[InlineKeyboardButton('🔊 Updates', url='https://t.me/PandaWep'),
InlineKeyboardButton('♻️ Sᴜᴩᴩᴏʀᴛ', url='https://t.me/PandaWepChat')],
[InlineKeyboardButton('🔊 Updates', url='https://t.me/Anime_Universe_In_Hindi_Dub'),
InlineKeyboardButton('♻️ Sᴜᴩᴩᴏʀᴛ', url='https://t.me/ABOUT_ll_KAKASHI_xd_lll')],
[InlineKeyboardButton('❤️‍🩹 About', callback_data='about'),
InlineKeyboardButton('🛠️ Help', callback_data='help')],
[InlineKeyboardButton("👨‍💻 Developer", url='https://t.me/AshutoshGoswami24')]
[InlineKeyboardButton("👨‍💻 Developer", url='https://t.me/iwant2boobies')]
])
)
elif data == "help":
await query.message.edit_text(
text=Txt.HELP_TXT,
disable_web_page_preview=True,
reply_markup=InlineKeyboardMarkup([
[InlineKeyboardButton("⚡Auto Rename Bot", url="https://t.me/AutoRenamePro_bot")],
[InlineKeyboardButton("⚡Auto Rename Bot", url="https://t.me/Animeuniiversebot")],
[InlineKeyboardButton("🔒 Close", callback_data = "close"),
InlineKeyboardButton("◀️ Back", callback_data = "start")]
])
Expand All @@ -53,7 +53,7 @@ async def cb_handler(client, query: CallbackQuery):
text=Txt.ABOUT_TXT.format(client.mention),
disable_web_page_preview = True,
reply_markup=InlineKeyboardMarkup([
[InlineKeyboardButton("🤖 More Bots", url="https://t.me/PandaWep/7")],
[InlineKeyboardButton("🤖 More Bots", url="https://t.me/Animeuniiversebot")],
[InlineKeyboardButton("🔒 Cʟᴏꜱᴇ", callback_data = "close"),
InlineKeyboardButton("◀️ Bᴀᴄᴋ", callback_data = "start")]
])
Expand Down