Files
limoka/Ijidishurka/modules/xixixaxa.py
2025-07-10 21:02:34 +03:00

24 lines
633 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# канал @modwini
from .. import loader
@loader.tds
class hihihaha(loader.Module):
"""Громкий звук хихихаха👍
Подпишись на канал @modwini"""
strings = {"name": "hihihaha"}
async def hihicmd(self, message):
"""Отпровляет гс с громким звуком"""
reply = await message.get_reply_message()
await message.delete()
await message.client.send_file(
message.to_id,
"https://t.me/radiofmonline/194",
voice_note=True,
reply_to=reply.id if reply else None,
)
return