Skip to content
/ Nexul Public

Nexul is a tool for automating actions. It asynchronously manages multiple Telegram sessions for mini-applications within Telegram.

License

Notifications You must be signed in to change notification settings

Kigrok/Nexul

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nexul

python Pyrogram aiofiles aiohttp cloudscraper tqdm License

Nexul is a tool for automating actions. It asynchronously manages multiple Telegram sessions for mini-applications within Telegram.


Blum

  1. Fetches Balance and Game Tickets: Retrieves the current balance and the number of game tickets.
  2. Collects Daily Rewards: Automatically collects daily rewards from the application.
  3. Claims Time-Based Rewards: Claims rewards that become available over time.
  4. Claims Referral Rewards: Automatically collects rewards for referring other users.
  5. Plays Games: Automates game playing within the app.

Each session runs asynchronously, performing all tasks independently from other sessions at different times. Additionally, the claiming of rewards is done at random intervals, imitating real user behavior to avoid patterns that could trigger anti-bot systems.


Install

Clone repository

git clone https://github.com/Kigrok/Nexul.git
cd Nexul

Installing the virtual environment and packages

python3 -m venv venv
source ./venv/bin/activate
pip3 install -r requirements.txt

Add to config.yml telegram account

  1. Log in Telegram.
  2. Create App.
  3. Add to config file Nexul/data/config.yml 'api_id', 'api_hash', 'app_title', 'phone_number', 'proxy'.

Example of adding an account with proxy settings If you have a proxy, you can add it to the config.yml file as follows:

0:
  api_hash: YOUR_API_HASH
  api_id: YOUR_API_ID
  app_title: YOUR_APP_TITLE
  device_model: null
  phone_number: YOUR_PHONE_NUMBER # without "+"; 123456789
  proxy:     
    hostname: 12.456.78.912
    password: password
    port: 8000
    scheme: http or socks5
    username: username
  user_agent: null

If you don’t have a proxy, set it as follows:

proxy: null

Note: user_agent and device_model will be generated automatically by Nexul.


Start

python3 main.py

About

Nexul is a tool for automating actions. It asynchronously manages multiple Telegram sessions for mini-applications within Telegram.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages