Free version of this software (current repository) has 5 bots: Blum, Major, Yescoin, Dotcoin and catsgang, but the paid version of the software has 19 bots. If you are interested in purchasing a paid bot, read the pinned message in my telegram channel: @faxweb_dev. Paid version software bot status: | Status | Bots |
---|---|---|
✅ | Blum, Cats, CexIo, Clayton | |
✅ | DotCoin, LeapApp, Major, MemeFi | |
✅ | MMProBump, Nomis, OKX Racer, PocketFi | |
✅ | TonStation, VanaDataHero, YesCoin | |
✅ | MoonBix, Not Pixel, FriendsFactory, Agent301 | |
⌛ | Tomarket, CoinSweeper, DuckChain |
Installation:
~ >>> git clone https://github.com/FaxWeb7/main-telegram-autoclickers.git
~ >>> cd main-telegram-autoclickers
# Linux
~/main-telegram-autoclickers >>> pip3 install -r requirements.txt
~/main-telegram-autoclickers >>> cp .env-example .env
# Windows
~ >>> chcp 1251
~/main-telegram-autoclickers >>> pip install -r requirements.txt
~/main-telegram-autoclickers >>> copy .env-example .env
Configure the application in .env
:
open .env file (nano .env
for linux, and notepad .env
for windows)
Add your API_ID
and API_HASH
:
API_ID = your_api_id
API_HASH = 'your_api_hash'
If you want to use a proxy, set USE_PROXY
to True
and set your PROXY_TYPE
, otherwise set USE_PROXY = False
:
USE_PROXY = True # or False
PROXY_TYPE = "socks5" # or http
Set SOFT_BOTS_DELAY
(delay between transition from one bot to another), SOFT_CIRCLES_NUM
(1 soft circle = execute all activities in all bots) and SOFT_CIRCLES_DELAY
(delay between soft circles)
SOFT_BOTS_DELAY = [600, 900]
SOFT_CIRCLES_NUM = 10
SOFT_CIRCLES_DELAY = [21000, 25000]
Set ACC_DELAY and USE_TAPS variables
ACC_DELAY = [minDelay, maxDelay] # random delay between connections to accounts in seconds
MINI_SLEEP = [minDelay, maxDelay] # random delay between requests in seconds
USE_TAPS = True or False # USE_TAPS = False if you don't want your bots to use taps
if you want to receive logs from soft to your telegram, set USE_TG_BOT = True
, specify your CHAT_ID
, and specify a BOT_TOKEN
from @BotFather
, otherwise set USE_TG_BOT = False
:
USE_TG_BOT = True
CHAT_ID = '123456789'
BOT_TOKEN = '1234567:asdfghjqwerty'
For each bot in BOTS_DATA, you can choose for you, use this bot or not (is_connected), and specify individual settings for this particular bot. Example BOTS_DATA:
BOTS_DATA= '{
"blum" : {
"is_connected": true,
"spend_diamonds": true,
"points": [120, 190],
"sleep_game_time": [60, 180],
"do_tasks": true,
"big_sleep_add": [1800, 3600]
}
}'
Creating proxies
USE_PROXY = False
, then skip this stepproxies.txt
in root 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 name
192.168.1.2:2934:username:password anothername
Creating sessions:
python3 main.py
1
-> Create new sessionLaunching bots that have is_connected = True
in the BOTS_DATA
variable of the .env
file:
python3 main.py
2
-> Run botsInstalling repository updates (if you see that I have committed a new change to a bot)
git pull
in root of repository
API_ID
and API_HASH
. No need to change them for each account.