🤖 Create Minecraft bots with a powerful, stable, and high level Python API
About
Lodestone is an incredibly powerful and flexible framework for building Minecraft bots of all kinds.
Whether you’re new to Minecraft bot development or a seasoned pro, Lodestone provides all the tools you need to bring your bot ideas to life.
Let’s dive into how to get up and running with Lodestone.
Features
- Supports Minecraft 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.19 and 1.20.1.
- Entity knowledge and tracking.
- Block knowledge. You can query the world around you. Milliseconds to find any block.
- Physics and movement - handle all bounding boxes
- Attacking entities and using vehicles.
- Inventory management.
- Crafting, chests, dispensers, enchantment tables.
- Digging and building.
- Miscellaneous stuff such as knowing your health and whether it is raining.
- Activating blocks and using items.
- Chat.
- Plugins for many servers.
Getting Started
[!IMPORTANT]
project lodestone is still in development and has some bugs.
All instalation instructons and documentation can be found here but here is the general idea.
Installation and Setup
The first step is to install the Lodestone package using pip. It’s recommended to create a virtual environment first before installing:
python3 -m venv env
source env/bin/activate
pip install lodestone
With Lodestone installed, create a bot.py file to initialize your bot. This is where you’ll configure your bot’s username, authentication method, and other options:
import lodestone
bot = lodestone.createBot(
host='localhost',
port=25565,
username='MyAwesomeBot',
auth='microsoft'
)
In this example, we’re connecting to a local Minecraft server on localhost and using Microsoft authentication.
Running and Logging In
With your bot created, run it using:
python bot.py
The first time you run your bot, Lodestone will prompt you to log in using the authentication method you configured. Follow the login prompts to authenticate your bot and connect it to the Minecraft server.
Lodestone provides multiple authentication options including Microsoft and Offline modes. See the docs for details.
Using the Lodestone CLI
Lodestone also offers an easy to use command line intercace (CLI). This allows you to use the basic functions of lodestone.
the CLI offers auto tab complete and has real time chat logs.
To use the CLI run the following command:
python -m lodestone -u USERNAME -h HOST -p PORT -v VERSION
[!IMPORTANT]
username
and host
are required options.
[!WARNING]
Do not share your Minecraft info to anyone.
Command line arguments
The command line arguments available are:
--username
or -u
: The Minecraft username the bot will log into. --host
or -h
: The IP address or hostname of the Minecraft server. --port
or -p
: The port number the Minecraft server is listening on. Default is 25565. --auth
: The authentication method your account requires (mojang/microsoft/cracked). Default is "microsoft". --version
or -v
: Minecraft version to use when connecting to a server. Default is auto.
Contributors
Name | Helped With | GitHub | Discord |
---|
Katzengott | fishing bot and cactus bot | @Katzengott | edelkatze |
Roadmap
MineFlayer 🚀
Mineflayer is a complex library that allows you to control Minecraft accounts through a powerful, stable, and high-level JavaScript API
Discord
https://discord.gg/Fa7HZgkczz
Credits
MineFlayer
Screenshots:
Dashboard
Settings