Spaces:
Running
Running
File size: 2,561 Bytes
fefc4fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# 🍀 © @tofik_dn
# FROM Man-Userbot <https://github.com/mrismanaziz/Man-Userbot>
# t.me/SharingUserbot & t.me/Lunatic0de
# ⚠️ Do not remove credits
from secrets import choice
from telethon.tl.types import InputMessagesFilterVideo, InputMessagesFilterVoice
from telethon.tl.types import InputMessagesFilterPhotos
from . import eor, ultroid_cmd, get_string, OWNER_NAME
@ultroid_cmd(pattern="asupan$")
async def _(event):
xx = await event.eor(get_string("asupan_1"))
try:
asupannya = [
asupan
async for asupan in event.client.iter_messages(
"@xcryasupan", filter=InputMessagesFilterVideo
)
]
await event.client.send_file(
event.chat_id, file=choice(asupannya), caption=f"Asupan BY 🥀{OWNER_NAME}🥀", reply_to=event.reply_to_msg_id
)
await xx.delete()
except Exception:
await xx.edit("**Tidak bisa menemukan video asupan.**")
@ultroid_cmd(pattern="pap$")
async def _(event):
xx = await event.eor(get_string("asupan_1"))
try:
papnya = [
pap
async for pap in event.client.iter_messages(
"@CeweLogoPack", filter=InputMessagesFilterPhotos
)
]
await event.client.send_file(
event.chat_id, file=choice(papnya), reply_to=event.reply_to_msg_id
)
await xx.delete()
except Exception:
await xx.edit("**Tidak bisa menemukan pap.**")
@ultroid_cmd(pattern="ppcp$")
async def _(event):
xx = await event.eor(get_string("asupan_1"))
try:
ppcpnya = [
ppcp
async for ppcp in event.client.iter_messages(
"@ppcpcilik", filter=InputMessagesFilterPhotos
)
]
await event.client.send_file(
event.chat_id, file=choice(ppcpnya), reply_to=event.reply_to_msg_id
)
await xx.delete()
except Exception:
await xx.edit("**Tidak bisa menemukan pap couple.**")
@ultroid_cmd(pattern="desah$")
async def _(event):
xx = await event.eor(get_string("asupan_1"))
try:
desahcewe = [
desah
async for desah in event.client.iter_messages(
"@desahancewesangesange", filter=InputMessagesFilterVoice
)
]
await event.client.send_file(
event.chat_id, file=choice(desahcewe), reply_to=event.reply_to_msg_id
)
await xx.delete()
except Exception:
await xx.edit("**Tidak bisa menemukan desahan cewe.**")
|