init, .gitignore

This commit is contained in:
2025-11-11 00:02:49 +01:00
commit 4e18cd0eb3
124 changed files with 16300 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
from pyrogram import Client, filters
from pyrogram.types import Message
from utils.misc import modules_help, prefix
import asyncio, random
@Client.on_message(filters.command("kokodrilo", prefix) & filters.me)
async def kokodrilo_explodando(_, message: Message):
amount = 1
if len(message.command) > 1:
amount = int(message.command[1])
for _ in range(amount):
await message.edit("🐊")
await asyncio.sleep(random.uniform(1, 2.5))
await message.edit("💥")
await asyncio.sleep(1.8)
modules_help["kokodrilo_explodando"] = {
"kokodrilo [number of explosions]": "<b>kOkOdRiLo ExPlOrAdO</b>",
}