Files
Ultroid-fork/plugins/schedule_msg.py
1Danish-00 6f44b386aa v0.2 11/10/2021
Co-authored-by: New-dev0 <New-dev0@users.noreply.github.com>
Co-authored-by: Amit Sharma <buddhhu@users.noreply.github.com>
Co-authored-by: TechiError <techierror@users.noreply.github.com>
Co-authored-by: Aditya <me@xditya.me>
Co-authored-by: Sonya Nikiforova <Sonniki@users.noreply.github.com>
Co-authored-by: M̲αραт <Marty2509@users.noreply.github.com>
Co-authored-by: Muhamad Risman Aziz <mrismanaziz@users.noreply.github.com>
Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com>
Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com>
Co-authored-by: sppidy <sppidy@users.noreply.github.com>
2021-10-11 00:27:23 +05:30

56 lines
1.9 KiB
Python

# Ultroid - UserBot
# Copyright (C) 2021 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}schedule <text/reply to msg> <time>`
In time u can use second as number, or like 1h or 1m
eg. `{i}schedule Hello 100` It deliver msg after 100 sec.
eg. `{i}schedule Hello 1h` It deliver msg after an hour.
"""
from datetime import timedelta
from pyUltroid.functions.admins import ban_time
from . import eor, ultroid_cmd
@ultroid_cmd(pattern="schedule ?(.*)", fullsudo=True)
async def _(e):
x = e.pattern_match.group(1)
xx = await e.get_reply_message()
if x and not xx:
y = x.split(" ")[-1]
k = x.replace(y, "")
if y.isdigit():
await e.client.send_message(
e.chat_id, k, schedule=timedelta(seconds=int(y))
)
await eor(e, get_string("schdl_1"), time=5)
else:
try:
z = await ban_time(e, y)
await e.client.send_message(e.chat_id, k, schedule=z)
await eor(e, get_string("schdl_1"), time=5)
except BaseException:
await eor(e, get_string("schdl_2"), time=5)
elif xx and x:
if x.isdigit():
await e.client.send_message(
e.chat_id, xx, schedule=timedelta(seconds=int(x))
)
await eor(e, get_string("schdl_1"), time=5)
else:
try:
z = await ban_time(e, x)
await e.client.send_message(e.chat_id, xx, schedule=z)
await eor(e, get_string("schdl_1"), time=5)
except BaseException:
await eor(e, get_string("schdl_2"), time=5)
else:
return await eor(e, get_string("schdl_2"), time=5)