Skip to content

NyaNekko/Kurimuzon-Userbot

 
 

Repository files navigation


Kurimuzon-Userbot
Telegram userbot inspired by dragon Dragon-Userbot
Code style GitHub last commit GitHub Repo stars

About

Kurimuzon-Userbot is a Telegram userbot (in case you didn't know, selfbot/userbot are used to automate user accounts). So how does it work? It works in a very simple way, using the pyrogram library, a python script connects to your account (creating a new session) and catches your commands.

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.

Installation

Linux and Windows [only wsl]

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

Manual

  • Clone repository from github
  • Go to folder with userbot and rename .env.example -> .env
  • Start userbot with python3 main.py

Subsequent launch:

cd Kurimuzon-Userbot/
python3 main.py

Custom modules

To add your module to the bot, create a pull request or put in manually in plugins folder.

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)

Credits

  • john-phonk
  • Taijefx34
  • LaciaMemeFrame
  • nalinor
  • asphy tg and namemc
  • fuccsoc
  • Written on Pyrogram❤️

    About

    Userbot for telegram with easiest installation

    Resources

    Stars

    Watchers

    Forks

    Releases

    No releases published

    Packages

     
     
     

    Languages

    • Python 96.2%
    • Shell 3.6%
    • Dockerfile 0.2%