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 bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async def main(bot: Client, message: Message):
return

if message.from_user.id in Config.BANNED_USERS:
await message.reply_text("Sorry, You are banned!\n\nContact [𝙎𝙪𝙥𝙥𝙤𝙧𝙩 𝙂𝙧𝙤𝙪𝙥](https://t.me/VJ_Bot_Disscussion)",
await message.reply_text("Sorry, You are banned!\n\nContact [𝙎𝙪𝙥𝙥𝙤𝙧𝙩 𝙂𝙧𝙤𝙪𝙥](https://t.me/moviesbazaarsupp)",
disable_web_page_preview=True)
return

Expand Down Expand Up @@ -319,7 +319,7 @@ async def button(bot: Client, cmd: CallbackQuery):
[
[
InlineKeyboardButton("Source Codes of Bot",
url="https://youtube.com/@Tech_VJ")
url="https://t.me/moviesbazaarsupp")
],
[
InlineKeyboardButton("Go Home", callback_data="gotohome"),
Expand All @@ -337,7 +337,7 @@ async def button(bot: Client, cmd: CallbackQuery):
[
[
InlineKeyboardButton("Source Codes of Bot",
url="https://youtube.com/@Tech_VJ")
url="https://t.me/moviesbazaarsupp")
],
[
InlineKeyboardButton("About Bot", callback_data="aboutbot"),
Expand All @@ -354,16 +354,16 @@ async def button(bot: Client, cmd: CallbackQuery):
reply_markup=InlineKeyboardMarkup(
[
[
InlineKeyboardButton("Updates Channel", url="https://t.me/VJ_Botz")
InlineKeyboardButton("Updates Channel", url="https://t.me/+BJfBweC0r68zNGI1")
],
[
InlineKeyboardButton("About Bot", callback_data="aboutbot"),
InlineKeyboardButton("About Dev", callback_data="aboutdevs"),
InlineKeyboardButton("Close 🚪", callback_data="closeMessage")
],
[
InlineKeyboardButton("Support Group", url="https://t.me/VJ_Bot_Disscussion"),
InlineKeyboardButton("YouTube Channel", url="https://youtube.com/@Tech_VJ")
InlineKeyboardButton("Support Group", url="https://t.me/moviesbazaarsupp"),
InlineKeyboardButton("YouTube Channel", url="https://t.me/moviesbazaarsupp")
]
]
)
Expand All @@ -379,7 +379,7 @@ async def button(bot: Client, cmd: CallbackQuery):
user = await bot.get_chat_member(channel_chat_id, cmd.message.chat.id)
if user.status == "kicked":
await cmd.message.edit(
text="Sorry Sir, You are Banned to use me. Contact my [𝙎𝙪𝙥𝙥𝙤𝙧𝙩 𝙂𝙧𝙤𝙪𝙥](https://t.me/VJ_Bot_Disscussion).",
text="Sorry Sir, You are Banned to use me. Contact my [𝙎𝙪𝙥𝙥𝙤𝙧𝙩 𝙂𝙧𝙤𝙪𝙥](https://t.me/moviesbazaarsupp).",
disable_web_page_preview=True
)
return
Expand All @@ -401,7 +401,7 @@ async def button(bot: Client, cmd: CallbackQuery):
return
except Exception:
await cmd.message.edit(
text="Something went Wrong. Contact my [𝙎𝙪𝙥𝙥𝙤𝙧𝙩 𝙂𝙧𝙤𝙪𝙥](https://t.me/VJ_Bot_Disscussion).",
text="Something went Wrong. Contact my [𝙎𝙪𝙥𝙥𝙤𝙧𝙩 𝙂𝙧𝙤𝙪𝙥](https://t.me/moviesbazaarsupp).",
disable_web_page_preview=True
)
return
Expand Down