Nurtex
This is a library written in Rust that allows you to create Minecraft bots and manage them, including connection and packet processing. This library focuses on an asynchronous environment, maximum speed and optimization, and ease of coding.
Supported Minecraft version: 1.21.11 (or protocol version - 774).
Features
- Speed: All operations in this library work efficiently and are limited by timeouts.
- Lightweight: Library is quite lightweight and does not have any unnecessary dependencies.
- Swarm architecture: Allows you to work effectively with large groups of bots while consuming little RAM.
- Cluster architecture: Allows you to simultaneously run swarms of bots on different servers (multi-target).
- Flexibility: Library has flexible settings (relative to current capabilities).
- Proxy support: Library supports connecting bots via SOCKS5 / SOCKS4 proxies.
- Asynchrony: Library relies on an asynchronous environment.
Documentation
Examples
All current examples can be found here: browse
Create a bot
This is one of the simplest examples of creating and connecting a bot.
use Bot;
use BotChatExt;
async
Create a swarm
In this example, you can see a simple implementation of a bot swarm.
use ;
async
Create a cluster
Here you can see a minimal example of creating a cluster.
use ;
async