This commit is contained in:
levina 2021-11-02 22:12:22 +07:00 committed by GitHub
parent 3e5d8b685a
commit bbc7519e76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,8 +6,7 @@ import re
import asyncio import asyncio
from pyrogram import Client from pyrogram import Client
from driver.veez import call_py, user from driver.veez import call_py, user, bot
from __main__ import BOT_ID, USERBOT_ID
from driver.queues import QUEUE, add_to_queue from driver.queues import QUEUE, add_to_queue
from driver.filters import command, other_filters from driver.filters import command, other_filters
from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL, ASSISTANT_NAME from config import BOT_USERNAME, GROUP_SUPPORT, IMG_1, IMG_2, UPDATES_CHANNEL, ASSISTANT_NAME
@ -73,8 +72,15 @@ async def vplay(_, m: Message):
] ]
) )
try:
popo = await bot.get_me()
papa = popo
pepe = papa.id
except Exception as e:
await m.reply_text(f"error:\n\n{e}")
return
chat_title = m.chat.title chat_title = m.chat.title
a = await _.get_chat_member(m.chat.id, BOT_ID) a = await _.get_chat_member(m.chat.id, pepe)
if a.status != "administrator": if a.status != "administrator":
await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**") await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
return return
@ -99,7 +105,10 @@ async def vplay(_, m: Message):
+ "\n\n» ❌ __Ban users__") + "\n\n» ❌ __Ban users__")
return return
try: try:
b = await _.get_chat_member(m.chat.id, USERBOT_ID) uber = await user.get_me()
grab = uber
good = grab.id
b = await _.get_chat_member(m.chat.id, good)
if b.status == "kicked": if b.status == "kicked":
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**") await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
return return
@ -299,8 +308,15 @@ async def vstream(_, m: Message):
] ]
) )
try:
popo = await bot.get_me()
papa = popo
pepe = papa.id
except Exception as e:
await m.reply_text(f"error:\n\n{e}")
return
chat_title = m.chat.title chat_title = m.chat.title
a = await _.get_chat_member(m.chat.id, BOT_ID) a = await _.get_chat_member(m.chat.id, pepe)
if a.status != "administrator": if a.status != "administrator":
await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**") await m.reply_text(f"💡 To use me, I need to be an **Administrator** with the following **permissions**:\n\n» ❌ __Delete messages__\n» ❌ __Ban users__\n» ❌ __Add users__\n» ❌ __Manage voice chat__\n\nData is **updated** automatically after you **promote me**")
return return
@ -325,7 +341,10 @@ async def vstream(_, m: Message):
+ "\n\n» ❌ __Ban users__") + "\n\n» ❌ __Ban users__")
return return
try: try:
b = await _.get_chat_member(m.chat.id, USERBOT_ID) uber = await user.get_me()
grab = uber
good = grab.id
b = await _.get_chat_member(m.chat.id, good)
if b.status == "kicked": if b.status == "kicked":
await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**") await m.reply_text(f"@{ASSISTANT_NAME} **is banned in group** {chat_title}\n\n» **unban the userbot first if you want to use this bot.**")
return return