mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 14:34:17 +02:00
360 lines
10 KiB
Python
360 lines
10 KiB
Python
from .. import loader
|
||
|
||
|
||
@loader.tds
|
||
class voiceGirls(loader.Module):
|
||
"""Голосовые сообщения девушек by @modwini"""
|
||
|
||
strings = {"name": "voiceGirls"}
|
||
|
||
async def приветикcmd(self, message):
|
||
"""| Приветик"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/195",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def кдcmd(self, message):
|
||
"""| Как дела?"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/198",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def даcmd(self, message):
|
||
"""| Да"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/197",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def нетcmd(self, message):
|
||
"""| Нет"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/196",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def жальcmd(self, message):
|
||
"""| очень жаль"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/199",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def недоверяюcmd(self, message):
|
||
"""| я тебе не доверяю"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/200",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def подождиcmd(self, message):
|
||
"""| подожди"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/201",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def спокcmd(self, message):
|
||
"""| спокойной ночи"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/202",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def ясноcmd(self, message):
|
||
"""| ясно"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/203",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def обидcmd(self, message):
|
||
"""| я обиделась"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/204",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def тмнcmd(self, message):
|
||
"""| ты мне нравишся"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/205",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def мурcmd(self, message):
|
||
"""| мур"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/206",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def пжcmd(self, message):
|
||
"""| ну пожалуйста"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/207",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def спсcmd(self, message):
|
||
"""| спасибо"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/208",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def тыгдеcmd(self, message):
|
||
"""| Ну ты где?"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/209",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def догcmd(self, message):
|
||
"""| Договорились"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/210",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def дутроcmd(self, message):
|
||
"""| Доброе утро"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/211",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def кснемогуcmd(self, message):
|
||
"""| К сожалению не могу"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/212",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def нипонcmd(self, message):
|
||
"""| Нипоняла"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/213",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def интересноcmd(self, message):
|
||
"""| Расскажи мне интересно"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/214",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def чмокиcmd(self, message):
|
||
"""| Чмоки чмоки"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/215",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def спок2cmd(self, message):
|
||
"""| Спокойной ночи тебе"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/216",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def тыменялюбишьcmd(self, message):
|
||
"""| А ты меня любишь?"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/217",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def нукотикcmd(self, message):
|
||
"""| Ну котик"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/218",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def котикcmd(self, message):
|
||
"""| Котик"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/219",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def блинcmd(self, message):
|
||
"""| Ну блин"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/220",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|
||
|
||
async def скоробудуcmd(self, message):
|
||
"""| Скоро буду"""
|
||
|
||
reply = await message.get_reply_message()
|
||
await message.delete()
|
||
await message.client.send_file(
|
||
message.to_id,
|
||
"https://t.me/radiofmonline/221",
|
||
voice_note=True,
|
||
reply_to=reply.id if reply else None,
|
||
)
|
||
return
|