Files
2025-07-10 21:02:34 +03:00

38 lines
1.1 KiB
Python
Raw Permalink 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.

# fuck python the encoding: utf-8
from .. import loader, utils
import logging
import datetime
import time
import asyncio
logger = logging.getLogger(__name__)
def register(cb):
cb(SPFMod())
@loader.tds
class SPFMod(loader.Module):
"""Этот модуль геи личку ваших друзей"""
strings = {"name": "ЖУЖАКА НАХУЙ"}
def __init__(self):
self.name = self.strings["name"]
def config_complete(self):
pass
async def spfcmd(self, message):
"""Чтобы использовать пишем так: .spf @ник_вашегоруга"""
args = utils.get_args(message)
if not args:
await utils.answer(message, "Вы не указали кому хотите писать\nЧтобы использовать напишите так: .spf @ник_вашегоруга")
return
who = args[0][1:]
conv = message.client.conversation("t.me/" + who,
timeout=5, exclusive=True)
for i in range(100):
await conv.send_message("Ты гей")