mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 14:34:17 +02:00
44 lines
1.7 KiB
Python
44 lines
1.7 KiB
Python
import time
|
||
import random
|
||
import logging
|
||
from .. import loader, utils
|
||
from random import randint, choice
|
||
from asyncio import sleep
|
||
from telethon.tl.functions.channels import JoinChannelRequest
|
||
|
||
logger = logging.getLogger(__name__)
|
||
|
||
|
||
def register(cb):
|
||
cb(Premiumfake_ping())
|
||
|
||
|
||
class Premiumfake_ping(loader.Module):
|
||
"""Фейк пинг с премиум эмодзи"""
|
||
strings = {'name': 'Premium fake ping'}
|
||
|
||
async def pinjcmd(self, message):
|
||
"""Используй .pinj <цифры>."""
|
||
text = utils.get_args_raw(message)
|
||
if not text:
|
||
for pinj in ["<code>🐻 Nofin...</code>"]:
|
||
await message.edit(pinj)
|
||
await sleep(0.3)
|
||
|
||
named_tuple = time.localtime()
|
||
time_string = time.strftime("%H:%M:%S", named_tuple)
|
||
|
||
await message.edit(f"<emoji document_id=6321050180095313397>⏱</emoji> <b>Скорость отклика Telegram:</b> <code>{random.randint(10, 1999)}.{random.randint(10, 99)}</code> <b>ms</b>\n<emoji document_id=5377371691078916778>😎</emoji> <b>Прошло с последней перезагрузки: {time_string}</b>")
|
||
return
|
||
else:
|
||
for pinj in ["<code>🐻 Nofin...</code>"]:
|
||
await message.edit(pinj)
|
||
await sleep(0.3)
|
||
|
||
named_tuple = time.localtime()
|
||
time_string = time.strftime("%H:%M:%S", named_tuple)
|
||
|
||
pinj = (f"<emoji document_id=6321050180095313397>⏱</emoji> <b>Скорость отклика Telegram:</b> <code>{text}</code> <b>ms</b>\n<emoji document_id=5377371691078916778>😎</emoji> <b>Прошло с последней перезагрузки: {time_string}</b>")
|
||
|
||
await message.edit(pinj)
|