Kurimuzon-Userbot

Userbot for telegram with easiest installation

GPL-3.0 License

Stars
30

Using selfbot/userbot is against Telegram's Terms of Service, and you may get banned for using it if you're not careful.

The developers are not responsible for any consequences you may encounter when using Kurimuzon-Userbot. We are also not responsible for any damage to chat rooms caused by using this userbot.

apt-get update && apt-get upgrade -y && apt install git && git clone https://github.com/KurimuzonAkuma/Kurimuzon-Userbot && cd Kurimuzon-Userbot/ && bash install.sh

Subsequent launch:

from pyrogram import Client, filters
from pyrogram.types import Message

from utils.misc import modules_help
from utils.filters import command


@Client.on_message(command("example_edit") & filters.me)
async def example_edit(_: Client, message: Message):
    await message.edit("<code>This is an example module</code>")


@Client.on_message(command("example_send") & filters.me)
async def example_send(client: Client, message: Message):
    await client.send_message(message.chat.id, "<b>This is an example module</b>")


# This adds instructions for your module
modules_help["example"] = {
    "example_send": "example send",
    "example_edit": "example edit",
}

# modules_help["example"] = { "example_send [text]": "example send" }
#                  |            |              |        |
#                  |            |              |        └─ command description
#           module_name         command_name   └─ optional command arguments
#        (only snake_case)   (only snake_case too)