Skip to content

MinecraftBotClient MBC Minecraft Client Official website address

Minecraft Bot Client (MBC)

Python Version License Status


MBC (Minecraft Bot Client) is a pure-protocol Minecraft bot client written in Python. No game assets required β€” it connects to servers, sends chat messages, and runs commands directly. Features include a bilingual UI, SRV record resolution, vanilla-style command autocomplete, auto-spam, session logging, and more.

Features

  • πŸ”Œ All versions supported β€” Auto-detects the server protocol; any Minecraft version between 1.8 and 26.2
  • 🌐 SRV records β€” Auto-resolves _minecraft._tcp.<domain> SRV records, no need to specify port
  • πŸ—£οΈ Bilingual UI β€” Chinese / English, picked automatically from the exe suffix (-zh / -en)
  • ⌨️ Vanilla-style autocomplete β€” Type . or / for a grey inline preview, Tab to complete, ↑/↓ or mouse wheel to cycle, Esc to clear
  • πŸ’¬ Chat & server commands β€” Plain text for chat, / prefix for server commands
  • πŸŽ›οΈ . client commands β€” .help .esc .connect .respawn .log .walk .eat .spam .config .exit (legacy // prefix still works)
  • πŸ€– Human-like actions β€” Head turns and arm swings with random delays and BΓ©zier trajectories, mimicking a real mouse to bypass common anti-cheat checks
  • 🚢 Random auto-walk β€” Random roaming or custom waypoints; stops automatically on damage/death
  • πŸ– Auto-eat on damage β€” Attempts to eat when health drops below a threshold, toggleable
  • πŸ”” Proximity & path alerts β€” Announces nearby players and missing blocks ahead; invisible to other players
  • πŸ“¨ Auto-spam β€” Configurable rate and message list, persisted in config
  • πŸ“ Session logging β€” Auto-creates timestamped .log files in the log/ folder when enabled
  • πŸ”” Remote version check & announcements β€” Shows remote txt content 1:1 on startup; skip with fast_start
  • ⚑ Fast start β€” Enable fast_start in config to skip network checks and reduce resource usage
  • πŸŒ™ Offline mode β€” Designed for online-mode=false (cracked/offline) servers
  • πŸ’» Cross-platform β€” Windows / Linux / macOS, single-file exe distribution via PyInstaller

Quick Start

Use Releases (recommended)

Download en/MinecraftBotClient-en.exe from the releases/ directory, place it next to en/config.en.json, and double-click the exe.

Run from source

pip install -r requirements.txt
python main.py

Build exe

python build.py

Artifacts go into releases/<version>/ β€” Chinese and English builds are separate under zh/ and en/ subdirectories (exe + config + README).

Configuration

{
  "version": "1.3.1",
  "username": "",
  "server_address": "localhost:25565",
  "minecraft_version": "1.8.9",
  "language": "en",
  "fast_start": false,
  "log_enabled": false,
  "spam_enabled": false,
  "spam_rate": 1.0,
  "spam_messages": ["Hello!", "Anyone there?", "GG"],
  "command_autocomplete": true,
  "auto_eat": true,
  "auto_eat_health_threshold": 10,
  "auto_walk": false,
  "auto_walk_waypoints": [],
  "stop_walk_on_damage": true,
  "proximity_alerts": true,
  "proximity_distance": 5.0,
  "human_actions": true,
  "human_action_interval_min": 2.0,
  "human_action_interval_max": 7.0
}
Field Description
username Player name, leave empty for a random one
server_address Server address, SRV domains supported (e.g. mc.example.com) or explicit port (e.g. mc.example.com:25565)
minecraft_version Server version, any value between 1.8 and 26.2
language UI language: zh / en
fast_start Skip version/announcement checks on startup
command_autocomplete Toggle command autocomplete
auto_eat / auto_eat_health_threshold Auto-eat on damage toggle and health threshold
auto_walk / auto_walk_waypoints Auto-walk toggle and custom waypoints (relative coordinates)
stop_walk_on_damage Stop walking automatically on damage/death
proximity_alerts / proximity_distance Nearby player alerts toggle and distance
human_actions / human_action_interval_min/max Human-like actions toggle and interval seconds
log_enabled Enable logging by default (toggle at runtime with .log on)
spam_enabled / spam_rate / spam_messages Auto-spam toggle, rate and message templates

Commands

Client commands (. prefix, not sent to the server; legacy // still works)

Command Description
.help Show all commands and open the help website
.esc Leave the server but keep the client open (standby mode)
.connect Reconnect in standby mode
.exit Disconnect and close the client
.respawn Send a respawn packet after dying
.log on/off Toggle logging (written to the log/ folder with timestamps)
.spam on/off Toggle auto-spam
.spam rate <n> Set messages per second
.spam add <msg> / .spam remove <i> / .spam list / .spam clear / .spam status Spam message management
.walk start/stop Start/stop random auto-walk
.walk add <x,y,z> Add a custom waypoint (relative coordinates, comma separated)
.walk list / .walk clear List/clear waypoints
.eat on/off Toggle auto-eat on damage
.config <key> [val] View or modify any config key (ex: .config fast_start true)

Vanilla-style Autocomplete

  • Type . or / to see a grey inline preview of the command
  • Tab accepts the preview; press Tab repeatedly to cycle suggestions
  • ↑ / ↓ arrow keys or the mouse wheel cycle suggestions
  • Enter sends, Esc clears the input, ↑ also browses command history

Server commands (/ prefix, sent to server)

Type /list, /msg player hello, /tp ... etc., same as in-game.

Plain text

Sent as a chat message directly.

Remote Version & Announcements

On startup the client fetches and displays the txt content 1:1:

  • Version check: https://shit.pub/s/developer/minecraft/client/MinecraftBotClient-MBC/verify/txt.txt
  • Announcements: https://shit.pub/s/developer/minecraft/client/MinecraftBotClient-MBC/announcement.txt

Enable fast_start to skip these checks.

Version Folder Structure

Each build is placed in its own folder under releases/<version>/:

releases/
β”œβ”€β”€ 1.3.1/
β”‚   β”œβ”€β”€ zh/
β”‚   β”‚   β”œβ”€β”€ MinecraftBotClient-zh.exe
β”‚   β”‚   β”œβ”€β”€ config.zh.json
β”‚   β”‚   └── README.zh.md
β”‚   └── en/
β”‚       β”œβ”€β”€ MinecraftBotClient-en.exe
β”‚       β”œβ”€β”€ config.en.json
β”‚       └── README.en.md
└── ...

Project Structure

MinecraftBotClient/
β”œβ”€β”€ main.py                      # Entry point
β”œβ”€β”€ build.py                     # Build script (versioned output, bilingual)
β”œβ”€β”€ requirements.txt             # Python dependencies
β”œβ”€β”€ README.md                    # δΈ­ζ–‡ζ–‡ζ‘£
β”œβ”€β”€ README.en.md                 # This file
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ i18n.py                  # Bilingual dictionary + t() translation function
β”‚   β”œβ”€β”€ logger.py                # SessionLogger for per-session log files
β”‚   β”œβ”€β”€ client/
β”‚   β”‚   └── minecraft_bot_client.py  # Main client logic (connect/chat/commands/walk/alerts)
β”‚   β”œβ”€β”€ network/
β”‚   β”‚   β”œβ”€β”€ connection_manager.py    # Minecraft protocol (handshake/login/chat/keepalive/SRV/human actions)
β”‚   β”‚   └── version_checker.py       # Remote version check + announcements
β”‚   β”œβ”€β”€ features/
β”‚   β”‚   └── spam.py                  # Auto-spam manager
β”‚   β”œβ”€β”€ settings/
β”‚   β”‚   └── settings_manager.py      # Config read/write + persistence
β”‚   └── ui/
β”‚       └── console_ui.py            # Console UI (ANSI colors / autocomplete / mouse wheel)
└── releases/                    # Build artifacts (versioned)

Protocol Support

Range Examples Protocol ID
1.8 1.8, 1.8.9 47
1.9 - 1.12 1.9, 1.10.2, 1.11, 1.12.2 47 - 340
1.13 - 1.16 1.13.2, 1.14.4, 1.15.2, 1.16.5 340 - 754
1.17 - 1.18 1.17, 1.18.2 755 - 758
1.19 1.19, 1.19.2, 1.19.4 759 - 760
1.20 1.20 - 1.20.6 763 - 766
1.21 1.21 - 1.21.8 767 - 773
25.x - 26.x 25.1 - 26.2 774 - 777

Any unlisted version within a range is auto-mapped to the nearest known protocol ID; the actual server protocol is probed before login.

Dependencies

Library Purpose
requests HTTP requests (version check, announcements)
cryptography AES/RSA encryption (online-mode login flow, not triggered in offline mode)
dnspython SRV record resolution
pyinstaller Packaging into exe

Notes

Β©copyright

  1. LICENSE View the address on GitHub.
  2. LICENSE Check p.shit.pub for the address.

About

Minecraft bot hacking client. Offers pure bot-based code for executing attacks.

Resources

Code of conduct

Contributing

Security policy

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages