From 60d05b5f273121aca04045d747099be4064d0e7e Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 2 Nov 2021 20:16:31 +0700 Subject: [PATCH] some fixes --- main.py | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index ff8ec60..51b2189 100644 --- a/main.py +++ b/main.py @@ -1,16 +1,29 @@ import asyncio - -from program import BOT_ID, USERBOT_ID -from driver.veez import call_py, bot, user from pytgcalls import idle +from driver.veez import call_py, bot, user +BOT_ID = 0 +USERBOT_ID = 0 async def all_info(bot, user): - global BOT_ID, USERBOT_ID + global BOT_ID, BOT_NAME, BOT_USERNAME + global USERBOT_ID, USERBOT_NAME, USERBOT_MENTION, USERBOT_USERNAME getme = await bot.get_me() getme1 = await user.get_me() BOT_ID = getme.id USERBOT_ID = getme1.id + if getme.last_name: + BOT_NAME = getme.first_name + " " + getme.last_name + else: + BOT_NAME = getme.first_name + BOT_USERNAME = getme.username + USERBOT_NAME = ( + f"{getme1.first_name} {getme1.last_name}" + if getme1.last_name + else getme1.first_name + ) + USERBOT_USERNAME = getme1.username + USERBOT_MENTION = getme1.mention async def mulai_bot():