mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 06:24:18 +02:00
62 lines
2.4 KiB
Python
62 lines
2.4 KiB
Python
from hikkatl.types import Message
|
|
from .. import loader, utils
|
|
|
|
import asyncio
|
|
import random
|
|
|
|
"""
|
|
███ ███ ██ ██ ██████ ██ ██ ██ ██████ ███████ ███████
|
|
████ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
██ ████ ██ ██ ██ ██████ ██ ██ ██ ██ ██ ███████ █████
|
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
██ ██ ██████ ██ ██ ██████ ███████ ██████ ███████ ███████
|
|
|
|
|
|
AutoGiveawayJoin
|
|
📜 Licensed under the GNU AGPLv3
|
|
"""
|
|
|
|
# meta banner: https://0x0.st/HYVa.jpg
|
|
# meta desc: desc
|
|
# meta developer: @BruhHikkaModules
|
|
|
|
|
|
@loader.tds
|
|
class AutoGiveawayJoin(loader.Module):
|
|
"""Авто присоеденение к розыгрышам в @mine_evo_bot"""
|
|
|
|
strings = {"name": "MyModule", "hello": "Hello world!"}
|
|
strings_ru = {"hello": "Привет мир!"}
|
|
strings_es = {"hello": "¡Hola mundo!"}
|
|
strings_de = {"hello": "Hallo Welt!"}
|
|
|
|
def __init__(self):
|
|
self.bot = 5522271758
|
|
self.config = loader.ModuleConfig(
|
|
loader.ConfigValue(
|
|
"join",
|
|
False,
|
|
"Присоеденяться к розыгрышам?",
|
|
validator=loader.validators.Boolean(),
|
|
)
|
|
)
|
|
|
|
@loader.watcher(from_id=5522271758)
|
|
async def join_giveaway(self, message: Message):
|
|
if message.text == "Success start!" and self.config["join"]:
|
|
await asyncio.sleep(random.randint(2, 5))
|
|
await self.client.send_message(self.bot, "Участвую")
|
|
|
|
@loader.command()
|
|
async def giveawayjoin(self, message: Message):
|
|
"""- Вкл / Выкл присоеденение к розыгрышам"""
|
|
self.config["join"] = not self.config["join"]
|
|
|
|
status = (
|
|
"Авто присоеденение включено"
|
|
if self.config["join"]
|
|
else "Авто присоеденение выключено"
|
|
)
|
|
|
|
await utils.answer(message, status)
|