Co-authored-by: New-dev0 <New-dev0@notavailable.live> Co-authored-by: Danish <danish@ultroid.tech> Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: Programming Error <error@notavailable.live> Co-authored-by: Aakash <BLUE-DEVIL1134@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: sppidy <sppidy@users.noreply.github.com> Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com> Co-authored-by: divkix <divkix@users.noreply.github.com> Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com>
33 lines
849 B
Python
33 lines
849 B
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2020 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}save <reply message>`
|
|
Save that replied msg to ur saved messages box.
|
|
|
|
"""
|
|
from . import *
|
|
|
|
|
|
@ultroid_cmd(pattern="save$")
|
|
async def saf(e):
|
|
x = await e.get_reply_message()
|
|
if not x:
|
|
return await eod(
|
|
e, "Reply to Any Message to save it to ur saved messages", time=5
|
|
)
|
|
MLA = e.sender_id
|
|
if not MLA:
|
|
MLA = ultroid_bot.uid
|
|
await ultroid_bot.send_message(MLA, x)
|
|
await eod(e, "Message saved to Your Pm/Saved Messages.", time=5)
|
|
|
|
|
|
HELP.update({f"{__name__.split('.')[1]}": f"{__doc__.format(i=HNDLR)}"})
|