Skip to content

soft that mines all popular mini apps, connected bots: blum bot, yescoin bot, tapswap bot, dotcoin bot, pocketfi bot, xempire bot, hamster kombat bot, okx racer bot, lost dogs bot, musk empire bot, x empire bot, major telegram bot, nomis bot, catsgang bot

Notifications You must be signed in to change notification settings

kingbasitoo/main-telegram-autoclickers

 
 

Repository files navigation

Automatic autoclicker for popular telegram mini-apps

Bot Status

Status Bots
Blum, CryptoRank, YesCoin, DotCoin
PocketFi, MuskEmpire, HamsterKombat
OKX Racer, Lost Dogs, Major
Nomis, Cats

Requirements

  • Python 3.11 (you can install it here)
  • Telegram API_ID and API_HASH (you can get them here)
  1. Install the required dependencies:

    python3.11 -m pip install -r requirements.txt
  2. Get your API_ID and API_HASH:

    • Go to my.telegram.org
    • Sign in with your Telegram account
    • Create a new application to get your API_ID and API_HASH
  3. Configure the application in global_data/global_config.py:

    • Add your API_ID and API_HASH:

      API_ID = your_api_id
      API_HASH = 'your_api_hash'
    • Set random delay between connections to accounts in seconds

      ACC_DELAY = [minDelay, maxDelay]
    • Set random delay between while True iterations in bots, in seconds

      BIG_SLEEP = [minDelay, maxDelay]
    • If you want to use a proxy, set USE_PROXY to True and set your PROXY_TYPE, otherwise set it to False:

      USE_PROXY = True  # or False
      PROXY_TYPE = "socks5" # or http
    • If you want to turn off some bots, you can do it by select False in the corresponding line in CONNECTED_BOTS, for example:

       CONECTED_BOTS = {
           "./1_blum" : True,
           "./2_cryptorank" : False
           "./3_yescoin" : True,
           "./4_dotcoin" : False,
           "./5_pocketfi" : True,
           "./6_muskempire" : False,
           "./7_hamsterkombat" : True,
           "./8_okxracer" : True,
           "./9_lostdogs" : False,
           "./10_major" : False,
           "./11_nomis" : False,
           "./12_cats" : True,
       }
    • if you want to receive logs from each of the bots, set USE_TG_BOT = True, specify your CHAT_ID, and specify a token from @BotFather for each of the bots:

       BLUM_BOT_TOKEN = '87265743:JKFDHad'
       CRYPTORANK_BOT_TOKEN = '87265743:JKFDHad'
       YESCOIN_BOT_TOKEN = '87265743:JKFDHad'
       DOTCOIN_BOT_TOKEN = '87265743:JKFDHad'
       POCKETFI_BOT_TOKEN = '87265743:JKFDHad'
       MUSKEMPIRE_BOT_TOKEN = '87265743:JKFDHad'
       HAMSTERKOMBAT_BOT_TOKEN = '87265743:JKFDHad'
       OKXRACER_BOT_TOKEN = '87265743:JKFDHad'
       LOSTDOGS_BOT_TOKEN = '87265743:JKFDHad'
       MAJOR_BOT_TOKEN = '87265743:JKFDHad'
       NOMIS_BOT_TOKEN = '87265743:JKFDHad'
       CATS_BOT_TOKEN = '87265743:JKFDHad'
  4. Creating proxies:

    • If USE_PROXY is True, open global_data/proxies.txt and fill it out using the example provided. Ensure there are no extra lines in the file. Proxy format : ip:port:login:password session_name, session name is which use this proxy (WITHOUT .session, only session name)
      192.168.1.1:1234:username:password 1_name
      192.168.1.2:2934:username:password 2_anothername
    • Now you need to move all these proxies to all folders with bots, run python3.11 main.py
    • Choose 2 -> Actions with proxies
    • Choose 2 -> Add all proxies from ./global_data/proxies.txt/
  5. Creating sessions:

    • Run python3.11 main.py
    • Choose 1 -> Actions with sessions
    • Choose 5 -> Create new session. it is important to name sessions exactly like this (with numeration):
      1_name.session
      2_anothername.session
    • Now you need to move all these sessions to all folders with bots, run python3.11 main.py
    • Choose 1 -> Actions with sessions
    • Choose 2 -> Add all sessions from ./global_data/sessions/

Usage

Launch bots selected in global_data/global_config.py

  1. Run python3.11 main.py -a 3

Important Notes

  • DONT USE MAIN ACCOUNT BECAUSE THERE IS ALWAYS A CHANCE TO GET BANNED IN TELEGRAM
  • Python Version: The software runs on Python 3.11. Using a different version may cause errors.
  • The software will work with all accounts using the single API_ID and API_HASH. No need to change them for each account.

About

soft that mines all popular mini apps, connected bots: blum bot, yescoin bot, tapswap bot, dotcoin bot, pocketfi bot, xempire bot, hamster kombat bot, okx racer bot, lost dogs bot, musk empire bot, x empire bot, major telegram bot, nomis bot, catsgang bot

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%