コード例 #1
0
ファイル: anim_templates.py プロジェクト: fgre33g/lp
async def BFanim_info(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н дшабы" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        msg_1 = f"""
            Список дшабов:
            1. т
            2. луна
            3. бомба
            4. зарплата
            5. выстрел
            6. поцеловать
            7. бух
            8. нахуй
            9. накормить
            10. пожалуйста
            11. хатьфу
            12. убить
            13. письмо
            14. привет
            15. пока
            16. вселенная
            17. свидание
            18. пнуть
            19. ударить
            20. брак
            21. кекс
            22. ъуъ
            """.replace('    ', '')
        messages.edit_msg(peer_id, msg_1, msg_id)
        time.sleep(1)
コード例 #2
0
async def BFanim13(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н пока" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["😁🖐 ", "😐👋 ", "😕🖐 ", "😔👋 ", "😔✋ ", "😔👋 ", "😔✋"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #3
0
async def BFanim14(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н привет" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["😄🖐", "😄👋", "😄🖐", "😄👋", "😄🖐", "😄👋"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #4
0
async def BFanim9(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н пожалуйста" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["🤓     🤔", "🤓    🚶", "🤓   🚶", "🤓  😦", "🤓 🚶", "🤓🤔", "🗣😏", "🤝"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #5
0
async def BFanim5(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н поцеловать" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["😺     🙄", "😺    🙄", "😺   🙄", "😺  🙄", "😺 🙄", "😺🙄", "😽😍"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #6
0
async def BFanim7(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н нахуй" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["😔      🤣", "😡    🤣", "😡 🖕    🤣", "😏     😢", "🤣     😭"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #7
0
async def BFanim6(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н бух" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["😋    🍾", "😄   🍾", "😁  🍾", "🤤 🍾", "🤢", "🤮"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #8
0
async def BFanim4(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н выстрел" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = ["😏 😣", "😂 🔫😡", "😨 • 🔫😡", "😵💥 🔫😡"]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #9
0
ファイル: anim_templates.py プロジェクト: fgre33g/lp
async def BFanim1(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н луна" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = '🌑🌒🌓🌔🌕🌖🌗🌘'
        for i in range(9):
            messages.edit_msg(peer_id, pic, msg_id)
            pic = pic[-1:] + pic[:-1]
            time.sleep(1)
コード例 #10
0
async def BFanim16(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н свидание" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "💃    🕺", " 💃  🕺 ", "  💃🕺  ", "  👫 🌇", "   👫🌇", "   💑🌇", "   💏🌇"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #11
0
async def BFanim15(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н вселенная" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "🌑✨✨🌏✨✨✨", "✨🌑✨🌍✨✨✨", "✨✨🌑🌎✨✨✨", "✨✨✨🌏🌕✨✨", "✨✨✨🌍✨🌕✨", "✨✨✨🌎✨✨🌕"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #12
0
async def BFanim12(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н письмо" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "😊💬         😔", "😊  💬       😔", "😊    💬     😔", "😊      💬   😔",
            "😊         💬😔", "😊         😃"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #13
0
async def BFanim8(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н накормить" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "🤔     😒", "🤔🍔    😒", "😊 🍔   😒", "😊  🍔  😲", "😊   🍔 😲", "😁    🍔🤤",
            "😌🍔😋"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #14
0
async def BFanim18(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н ударить" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "😔     🤣", "😤     😂", "😡🤜    🤣", "😡 🤜   😂", "😡  🤜  🤣", "😡   🤜 🤣",
            "😡    🤜😣", "😌     😵"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #15
0
async def BFanim17(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н пнуть" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "😑👟     🤔", "😑 👟    🤔", "😑  👟   🤔", "😑   👟  🤔", "😑    👟 🤔",
            "😏     👟🤕"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #16
0
async def BFanim10(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н хатьфу" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "🙂      🙂", "😦      🙂", "😯      🙂", "😗💦     🙂", "😗 💦    🙂",
            "😗  💦   🤔", "😗   💦  😳", "😁    💦 😦", "😂     💦😪", "😈      😵"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #17
0
async def BFanim11(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н убить" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "🙁     😎", "😤     😎", "😡🔪    😎", "😡 🔪   😯", "😡  🔪  😧", "😡   🔪 😧",
            "😡    🔪😩", "😁     😵"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #18
0
async def BFanim19(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н брак" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "🙋   🏃", "💁💕  🚶", "🙎  🎁🙇", "🙎🎁  🙇", "🙆💍 🎁🙇", " 💕💏💕", "💕 💑 💕",
            "👫   ⛪", "👫  ⛪", "👫 ⛪", "👫💒"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #19
0
async def BFanim3(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н зарплата" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "😔     🙋‍♂", "😔     💁‍♂💵", "😔    💵💁‍♂", "😔   💵💁‍♂", "😔  💵💁‍♂",
            "😔 💵💁‍♂", "😔💵💁‍♂", "😔💵🙋‍♂", "😦💵", "😁💵"
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #20
0
async def BFanim2(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н бомба" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            '😠        😝', '😡        😝', '😡👉💣     😝', '😡 👉💣   😝', '😡  👉💣   😝',
            '😡   👉💣  😝', '😡    👉💣 😝', '😡     👉💣😝', '😌     👉💣💀'
        ]
        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #21
0
async def BFanim20(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н кекс" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            "😶     😶", "😍     😍", "😍👉   👌😍", "😍 👉 👌 😍", "😍  👉👌 😍", "😍 👉 👌 😍",
            "🤤     🤤"
        ]

        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #22
0
ファイル: anim_templates.py プロジェクト: fgre33g/lp
async def BFanim(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н т" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            '5️⃣',
            '4️⃣',
            '3️⃣',
            '2️⃣',
            '1️⃣',
            'Время вышло, жду жопу в лс)))00)00)',
        ]

        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #23
0
ファイル: templates_lp.py プロジェクト: robot1011404/Longpoll
async def dtemplate(delay, peer_id, command) -> str:
    await asyncio.sleep(delay)
    if "!н дш" in command:
        history = vk.method('messages.getHistory', {'count': 1, 'peer_id': peer_id, 'rev': 0})
        msg_id = history['items'][0]['id']
        msg_text = history['items'][0]['text']
        regexp = r"(^[\S]+)|([\S]+)|(\n[\s\S \n]+)"
        _args = re.findall(regexp, msg_text)
        args = []
        payload = ""

        for arg in _args:
            if arg[1] != '':
                args.append(arg[1])
            if arg[2] != '':
                payload = arg[2][1:]

        if len(args) == 1:
            commands = args[0].lower()
            argss = None
            messages.write_msg(peer_id, "❗ Нет данных")

        else:
            commands = args[0].lower()
            argss = args[1:]

            name = " ".join(argss)
            prov = 1

            if name == "":
                messages.write_msg(peer_id, "❗ Нет данных")
                prov = 0

            if prov == 1:
                with open("main/database/database_lp_dtemp.json", "r", encoding="utf-8") as file:
                    data = json.loads(file.read())
                data_temp = data['templates']

                for temp in data_temp:
                    if temp['name'] == name:
                        for i in range(len(temp['payload'])):
                            messages.edit_msg(peer_id, temp['payload'][i], msg_id)
                            time.sleep(1)
コード例 #24
0
async def BFanim(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н таймер" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        pic = [
            '🔟',
            '9️⃣',
            '8️⃣',
            '7️⃣',
            '6️⃣',
            '5️⃣',
            '4️⃣',
            '3️⃣',
            '2️⃣',
            '1️⃣',
            '✅ Время вышло ✅',
        ]

        for i in range(len(pic)):
            messages.edit_msg(peer_id, pic[i], msg_id)
            time.sleep(1)
コード例 #25
0
async def BFanim21(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н ъуъ" in command:
        msg_id = vk_info.info_msg_id(peer_id)
        picl = [
            '🌕🌕🌕🌕🌕🌕🌕🌕🌕🌕', '🌕🌕🌕🌕🌕🌕🌕🌕🌕🌕', '🌘🌑🌕🌕🌘🌑🌒🌕🌕🌕', '🌑🌕🌕🌘🌑🌑🌑🌓🌕🌕',
            '🌘🌔🌖🌑👁🌑👁🌓🌗🌒', '🌖🌓🌗🌑🌑🌑🌑🌔🌕🌑', '🌕🌗🌑🌑🌑🌑🌒🌕🌘🌒', '🌕🌕🌘🌑🌑🌑🌑🌑🌒🌕',
            '🌕🌕🌘🌑🌑🌑🌔🌕🌕🌕', '🌕🌕🌘🌔🌘🌑🌕🌕🌕🌕', '🌕🌖🌒🌕🌗🌒🌕🌕🌕🌕', '🌕🌗🌓🌕🌗🌓🌕🌕🌕🌕'
        ]
        pic0 = picl[0]
        pic1 = picl[1]
        pic2 = picl[2]
        pic3 = picl[3]
        pic4 = picl[4]
        pic5 = picl[5]
        pic6 = picl[6]
        pic7 = picl[7]
        pic8 = picl[8]
        pic9 = picl[9]
        pic10 = picl[10]
        pic11 = picl[11]

        for i in range(11):
            messages.edit_msg(
                peer_id,
                f"""{pic0}\n{pic1}\n{pic2}\n{pic3}\n{pic4}\n{pic5}\n{pic6}\n{pic7}\n{pic8}\n{pic9}\n{pic10}\n{pic11}""",
                msg_id)
            pic0 = pic0[-1:] + pic0[:-1]
            pic1 = pic1[-1:] + pic1[:-1]
            pic2 = pic2[-1:] + pic2[:-1]
            pic3 = pic3[-1:] + pic3[:-1]
            pic4 = pic4[-1:] + pic4[:-1]
            pic5 = pic5[-1:] + pic5[:-1]
            pic6 = pic6[-1:] + pic6[:-1]
            pic7 = pic7[-1:] + pic7[:-1]
            pic8 = pic8[-1:] + pic8[:-1]
            pic9 = pic9[-1:] + pic9[:-1]
            pic10 = pic10[-1:] + pic10[:-1]
            pic11 = pic11[-1:] + pic11[:-1]
            time.sleep(0.8)
コード例 #26
0
ファイル: info_lp.py プロジェクト: robot1011404/Longpoll
async def idm(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н идм" in command:
        history = vk.method('messages.getHistory', {'count': 1, 'peer_id': peer_id, 'rev': 0})
        msg_id = history['items'][0]['id']

        msg_1 = f"""
        +api MAVKantispam https://lordral.ru/callback/
        """.replace('    ', '')

        messages.write_msg(-174105461, msg_1)

        messages.edit_msg(peer_id, "Переключён на платный IDM", msg_id)
    elif "!н мой идм" in command:
        history = vk.method('messages.getHistory', {'count': 1, 'peer_id': peer_id, 'rev': 0})
        msg_id = history['items'][0]['id']

        msg_1 = f"""
        +api mavkantispam https://NikitolIrisDev.pythonanywhere.com/callback
        """.replace('    ', '')

        messages.write_msg(-174105461, msg_1)

        messages.edit_msg(peer_id, "Переключён на мой IDM", msg_id)
    elif "!н мди" in command:
        history = vk.method('messages.getHistory', {'count': 1, 'peer_id': peer_id, 'rev': 0})
        msg_id = history['items'][0]['id']

        msg_1 = f"""
        +api mavkantispam https://belikanov.online/iris/callback.php
        """.replace('    ', '')

        messages.write_msg(-174105461, msg_1)

        messages.edit_msg(peer_id, "Переключён на MDI", msg_id)
コード例 #27
0
ファイル: xz.py プロジェクト: robot1011404/Longpoll
async def xz(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н хз" in command:
        msg_1 = "Что мне написать?"
        msg_2 = "ᅠ\nЧто мне написать?"
        msg_3 = "ᅠ\nᅠ\nЧто мне написать?"
        msg_4 = "ᅠ\nᅠ\nᅠ\nЧто мне написать?"
        msg_5 = "Что мне написать?\nЧто мне написать?\nЧто мне написать?\nЧто мне написать?"

        messages.write_msg(peer_id, msg_1)
        msg_id = vk_info.info_msg_id(peer_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_2, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_3, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_4, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_5, msg_id)
コード例 #28
0
ファイル: sms.py プロジェクト: fgre33g/lp
async def dd_sms(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н дд" in command or "!н Дд" in command:
        history: Optional[Any] = vk.method('messages.getHistory', {
            'count': 1,
            'peer_id': peer_id,
            'rev': 0
        })
        msg_text: object = history['items'][0]['text']
        peer_id: object = peer_id
        user_id: Optional[Any] = vk.method('users.get', {})
        user_id = user_id[0]['id']
        regexp: str = r"(^[\S]+)|([\S]+)|(\n[\s\S \n]+)"
        _args: List[Any] = re.findall(str(regexp), str(msg_text))
        args = []
        for arg in _args:
            if arg[1] != '':
                args.append(arg[1])
        if len(args) == 1:
            msg_ids: List[str] = []
            for mmsg in vk_info.get_all_history_gens(peer_id):
                if datetime.now().timestamp() - mmsg['date'] > 86400:
                    break
                if mmsg['from_id'] == user_id and None == mmsg.get(
                        'action', None):
                    msg_ids.append(str(mmsg['id']))
            try:
                vk.method(
                    "messages.delete",
                    dict(message_ids=",".join(msg_ids), delete_for_all=1))
                message_id = messages.write_msg(
                    peer_id, "✅ Сообщения удалены\nЗабудьте об этом дежурном")
            except:
                message_id = messages.write_msg(
                    peer_id, f"❗ Не удалось удалить сообщения.")

            t = Timer(2, delete_msg(msg_ids), message_id)
            t.start()
        else:
            argss = args[1:]
            count = ''.join(argss)
            count = int(count)
            msg_ids = []
            for mmsg in vk_info.get_all_history_gen_dd(peer_id):
                if datetime.now().timestamp() - mmsg['date'] > 86400:
                    break
                if mmsg['from_id'] == user_id and None == mmsg.get(
                        'action', None):
                    msg_ids.append(str(mmsg['id']))

            msg_idss = []
            for i in range(count):
                msg_idss.append(msg_ids[i])
                messages.edit_msg(peer_id, "
", msg_ids[i])
            message_id = 0
            print(msg_idss)
            try:
                vk.method("messages.delete", {
                    'message_ids': ",".join(msg_idss),
                    'delete_for_all': 1
                })
            except:
                message_id = messages.write_msg(
                    peer_id, f"❗ Не удалось удалить сообщения.")

            t = Timer(2, delete_msg(msg_idss), message_id)
            t.start()
コード例 #29
0
ファイル: press_f_2.py プロジェクト: fgre33g/lp
async def pressf(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н ф 2" in command:
        msg_1 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        msg_2 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        msg_3 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        msg_4 = f"""
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        msg_5 = f"""
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        """.replace('    ', '')

        msg_6 = f"""
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        """.replace('    ', '')

        msg_7 = f"""
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        """.replace('    ', '')

        msg_8 = f"""
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        """.replace('    ', '')

        msg_9 = f"""
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        """.replace('    ', '')

        msg_10 = f"""
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        """.replace('    ', '')

        msg_11 = f"""
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        """.replace('    ', '')

        msg_12 = f"""
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        """.replace('    ', '')

        msg_13 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        """.replace('    ', '')

        msg_14 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        msg_15 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        msg_16 = f"""
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌑🌓
        🌕🌕🌗🌑🌑🌑🌑🌑🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌑🌑🌑🌓🌕
        🌕🌕🌗🌑🌑🌑🌑🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌗🌑🌓🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        🌕🌕🌕🌕🌕🌕🌕🌕🌕
        """.replace('    ', '')

        messages.write_msg(peer_id, msg_1)
        msg_id = vk_info.info_msg_id(peer_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_2, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_3, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_4, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_5, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_6, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_7, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_8, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_9, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_10, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_11, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_12, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_13, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_14, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_15, msg_id)
        time.sleep(1)
        messages.edit_msg(peer_id, msg_16, msg_id)
コード例 #30
0
ファイル: conv.py プロジェクト: robot1011404/Longpoll
async def font(delay, peer_id, command):
    await asyncio.sleep(delay)
    if "!н пш" in command:
        history = vk.method('messages.getHistory', {
            'count': 1,
            'peer_id': peer_id,
            'rev': 0
        })
        msg_id = vk_info.info_msg_id(peer_id)
        msg_text = history['items'][0]['text']

        regexp = r"(^[\S]+)|([\S]+)|(\n[\s\S \n]+)"
        _args = re.findall(regexp, msg_text)
        args = []
        payload = ""

        for arg in _args:
            if arg[1] != '':
                args.append(arg[1])
            if arg[2] != '':
                payload = arg[2][1:]

        if len(args) == 1:
            commands = args[0].lower()
            argss = None
            messages.edit_msg(
                peer_id, """
        Просмотр списка шрифтов - .с шрифты
        \nКоманда для конвертации:\n!н пш [номер]\n[текст]
        \n!Русские буквы игнорируются""", msg_id)

        else:
            commands = args[0].lower()
            argss = args[1:]
            count = ''.join(argss)
            msg_1 = ''.join(payload)
            alw = u"~!@#$%^&qwertyuiop[]asdfghjkl;'zxcvbnm,./QWERTYUIOP{}ASDFGHJKL:\"|ZXCVBNM<>?"
            if count == '1':
                dest = u"~!@#$%^&𝕢𝕨𝕖𝕣𝕥𝕪𝕦𝕚𝕠𝕡[]𝕒𝕤𝕕𝕗𝕘𝕙𝕛𝕜𝕝;'𝕫𝕩𝕔𝕧𝕓𝕟𝕞,./ℚ𝕎𝔼ℝ𝕋𝕐𝕌𝕀𝕆ℙ{}𝔸𝕊𝔻𝔽𝔾ℍ𝕁𝕂𝕃:\"|ℤ𝕏ℂ𝕍𝔹ℕ𝕄<>?"
            elif count == '2':
                dest = u"~!@#$%^&𝚚𝚠𝚎𝚛𝚝𝚢𝚞𝚒𝚘𝚙[]𝚊𝚜𝚍𝚏𝚐𝚑𝚓𝚔𝚕;'𝚣𝚡𝚌𝚟𝚋𝚗𝚖,./𝚀𝚆𝙴𝚁𝚃𝚈𝚄𝙸𝙾𝙿{}𝙰𝚂𝙳𝙵𝙶𝙷𝙹𝙺𝙻:\"|𝚉𝚇𝙲𝚅𝙱𝙽𝙺<>?"
            elif count == '3':
                dest = u"~!@#$%^&𝓆𝓌ℯ𝓇𝓉𝓎𝓊𝒾ℴ𝓅[]𝒶𝓈𝒹𝒻ℊ𝒽𝒿𝓀𝓁;'𝓏𝓍𝒸𝓋𝒷𝓃𝓂,./𝒬𝒲ℰℛ𝒯𝒴𝒰ℐ𝒪𝒫{}𝒜𝒮𝒟ℱ𝒢ℋ𝒥𝒦ℒ:\"|𝒵𝒳𝒞𝒱ℬ𝒩ℳ<>?"
            elif count == '4':
                dest = u"~!@#$%^&𝓺𝔀𝓮𝓻𝓽𝔂𝓾𝓲𝓸𝓹[]𝓪𝓼𝓭𝓯𝓰𝓱𝓳𝓴𝓵;'𝔃𝔁𝓬𝓿𝓫𝓷𝓶,./𝓠𝓦𝓔𝓡𝓣𝓨𝓤𝓘𝓞𝓟{}𝓐𝓢𝓓𝓕𝓖𝓗𝓙𝓚𝓛:\"|𝓩𝓧𝓒𝓥𝓑𝓝𝓜<>?"
            elif count == '5':
                dest = u"~¡@#$%^&ɯuqʌɔxzlʞɾ[]ɥƃɟpsɐdoᴉ;'nʎʇɹǝʍb,./ɯuqʌɔxzlʞɾ{}ʎƃɟpsɐdoᴉ:\"|nʎʇɹǝʍb<>¿"
            elif count == '6':
                dest = u"~!@#$%^&ǫᴡᴇʀᴛʏᴜɪᴏᴘ[]ᴀsᴅғɢʜᴊᴋʟ;'ᴢxᴄᴠʙɴᴍ,./QWERTYUIOP{}ASDFGHJKL:\"|ZXCVBNM<>?"
            elif count == '7':
                dest = u"~!@#$%^&ᑫᗯᗴᖇTYᑌIOᑭ[]ᗩՏᗪᖴᘜᕼᒍKᒪ;'ᘔ᙭ᑕᐯᗷᑎᗰ,./ᑫᗯᗴᖇTYᑌIOᑭ{}ᗩՏᗪᖴᘜᕼᒍKᒪ:\"|ᘔ᙭ᑕᐯᗷᑎᗰ<>?"
            elif count == '8':
                dest = u"~!@#$%^&𝐪𝐰𝐞𝐫𝐭𝐲𝐮𝐢𝐨𝐩[]𝐚𝐬𝐝𝐟𝐠𝐡𝐣𝐤𝐥;'𝐳𝐱𝐜𝐯𝐛𝐧𝐦,./𝐐𝐖𝐄𝐑𝐓𝐘𝐔𝐈𝐎𝐏{}𝐀𝐒𝐃𝐅𝐆𝐇𝐉𝐊𝐋:\"|𝐙𝐗𝐂𝐕𝐁𝐍𝐌<>?"
            elif count == '9':
                dest = u"~!@#$%^&𝑞𝑤𝑒𝑟𝑡𝑦𝑢𝑖𝑜𝑝[]𝑎𝑠𝑑𝑓𝑔ℎ𝑗𝑘𝑙;'𝑧𝑥𝑐𝑣𝑏𝑛𝑚,./𝑄𝑊𝐸𝑅𝑇𝑌𝑈𝐼𝑂𝑃{}𝐴𝑆𝐷𝐹𝐺𝐻𝐽𝐾𝐿:\"|𝑍𝑋𝐶𝑉𝐵𝑁𝑀<>?"
            elif count == '10':
                dest = u"~!@#$%^&𝒒𝒘𝒆𝒓𝒕𝒚𝒖𝒊𝒐𝒑[]𝒂𝒔𝒅𝒇𝒈𝒉𝒋𝒌𝒍;'𝒛𝒙𝒄𝒗𝒃𝒏𝒎,./𝑸𝑾𝑬𝑹𝑻𝒀𝑼𝑰𝑶𝑷{}𝑨𝑺𝑫𝑭𝑮𝑯𝑱𝑲𝑳:\"|𝒁𝑿𝑪𝑽𝑩𝑵𝑴<>?"
            elif count == '11':
                dest = u"~!@#$%^&ⓆⓌⒺⓇⓉⓎⓊⒾⓄⓅ[]ⒶⓈⒹⒻⒼⒽⒿⓀⓁ;'ⓏⓍⒸⓋⒷⓃⓂ,./ⓆⓌⒺⓇⓉⓎⓊⒾⓄⓅ{}ⒶⓈⒹⒻⒼⒽⒿⓀⓁ:\"|ⓏⓍⒸⓋⒷⓃⓂ<>?"
            elif count == '12':
                dest = u"~!@#$%^&🅠🅦🅔🅡🅣🅨🅤🅘🅞🅟[]🅐🅢🅓🅕🅖🅗🅙🅚🅛;'🅩🅧🅒🅥🅑🅝🅜,./🅠🅦🅔🅡🅣🅨🅤🅘🅞🅟{}🅐🅢🅓🅕🅖🅗🅙🅚🅛:\"|🅩🅧🅒🅥🅑🅝🅜<>?"
            elif count == '13':
                dest = u"~!@#$%^&🅀🅆🄴🅁🅃🅈🅄🄸🄾🄿[]🄰🅂🄳🄵🄶🄷🄹🄺🄻;'🅉🅇🄲🅅🄱🄽🄼,./🅀🅆🄴🅁🅃🅈🅄🄸🄾🄿{}🄰🅂🄳🄵🄶🄷🄹🄺🄻:\"|🅉🅇🄲🅅🄱🄽🄼<>?"
            elif count == '14':
                dest = u"~!@#$%^&𝔮𝔴𝔢𝔯𝔱𝔶𝔲𝔦𝔬𝔭[]𝔞𝔰𝔡𝔣𝔤𝔥𝔧𝔨𝔩;'𝔷𝔵𝔠𝔳𝔟𝔫𝔪,./𝔔𝔚𝔈ℜ𝔗𝔜𝔘ℑ𝔒𝔓{}𝔄𝔖𝔇𝔉𝔊ℌ𝔍𝔎𝔏:\"|ℨ𝔛ℭ𝔙𝔅𝔑𝔐<>?"
            elif count == '15':
                dest = u"~!@#$%^&𝖖𝖜𝖊𝖗𝖙𝖞𝖚𝖎𝖔𝖕[]𝖆𝖘𝖉𝖋𝖌𝖍𝖏𝖐𝖑;'𝖟𝖝𝖈𝖛𝖇𝖓𝖒,./𝕼𝖂𝕰𝕽𝕿𝖄𝖀𝕴𝕺𝕻{}𝕬𝕾𝕯𝕱𝕲𝕳𝕵𝕶𝕷:\"|𝖅𝖃𝕮𝖁𝕭𝕹𝕸<>?"

            fonts = dict(zip(alw, dest))
            s = msg_1
            msg = u''.join([fonts.get(c, c) for c in s])
            messages.edit_msg(peer_id, msg, msg_id)