Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: Aditya <xditya@ultroid.tech> Co-authored-by: Kaif <88398455+kaif-00z@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: 1Danish-00 <danish@ultroid.tech> Co-authored-by: smartman_ru <bblkovo@gmail.com>
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2021-2022 TeamUltroid
|
|
#
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in
|
|
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
|
|
"""
|
|
✘ Commands Available -
|
|
|
|
• `{i}ftyping <time/in secs>`
|
|
`Show Fake Typing in current chat.`
|
|
|
|
• `{i}faudio <time/in secs>`
|
|
`Show Fake Recording Action in current chat.`
|
|
|
|
• `{i}fvideo <time/in secs>`
|
|
`Show Fake video action in current chat.`
|
|
|
|
• `{i}fgame <time/in secs>`
|
|
`Show Fake Game Playing Action in current chat.`
|
|
|
|
• `{i}fsticker <time/in secs>`
|
|
`Show Fake sticker choosing Action in current chat.`
|
|
|
|
• `{i}flocation <time/in secs>`
|
|
`Show Fake location Action in current chat.`
|
|
|
|
• `{i}fcontact <time/in secs>`
|
|
`Show Fake contact choosing Action in current chat.`
|
|
|
|
• `{i}fround <time/in secs>`
|
|
`Show Fake video message action in current chat.`
|
|
|
|
• `{i}fphoto <time/in secs>`
|
|
`Show Fake sending photo in current chat.`
|
|
|
|
• `{i}fdocument <time/in secs>`
|
|
`Show Fake sending document in current chat.`
|
|
"""
|
|
import math
|
|
import time
|
|
|
|
from pyUltroid.functions.admins import ban_time
|
|
|
|
from . import asyncio, get_string, ultroid_cmd
|
|
|
|
|
|
@ultroid_cmd(
|
|
pattern="f(typing|audio|contact|document|game|location|sticker|photo|round|video)( (.*)|$)"
|
|
)
|
|
async def _(e):
|
|
act = e.pattern_match.group(1).strip()
|
|
t = e.pattern_match.group(2)
|
|
if act in ["audio", "round", "video"]:
|
|
act = "record-" + act
|
|
if t.isdigit():
|
|
t = int(t)
|
|
elif t.endswith(("s", "h", "d", "m")):
|
|
t = math.ceil((ban_time(e, t)) - time.time())
|
|
else:
|
|
t = 60
|
|
await e.eor(get_string("fka_1").format(str(t)), time=5)
|
|
async with e.client.action(e.chat_id, act):
|
|
await asyncio.sleep(t)
|