Skip to content
 
 

Latest commit

 

History

1,269 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MCProtocolLib

![protocol snapshot](https://img.shields.io/badge/dynamic/xml ?url=https%3A%2F%2Frepo.opencollab.dev%2Fmaven-snapshots%2Forg%2Fgeysermc%2Fmcprotocollib%2Fprotocol%2F1.21.9-SNAPSHOT%2Fmaven-metadata.xml &query=%2F%2Fmetadata%2Fversioning%2FsnapshotVersions%2FsnapshotVersion%5Blast()%5D%2Fvalue &label=protocol%20build)

MCProtocolLib is a simple library for communicating with Minecraft clients and servers. It allows developers to build custom bots, clients, or servers for Minecraft with ease.

Example Code

See the example folder for sample usage.

Adding as a Dependency

MCProtocolLib builds are published to the Open Collaboration repository. Follow the below steps to add MCProtocolLib as a dependency to your project.

Maven

<repositories>
    <repository>
        <id>opencollab</id>
        <url>https://repo.opencollab.dev/maven-releases/</url>
    </repository>
</repositories>

<dependency>
    <groupId>com.github.steveice10</groupId>
    <artifactId>mcprotocollib</artifactId>
    <version>(version here)</version>
</dependency>

Gradle

allprojects {
    repositories {
        maven { url 'https://repo.opencollab.dev/maven-releases/' }
    }
}

dependencies {
    implementation 'com.github.steveice10:mcprotocollib:(version here)'
}

Snapshots

To use snapshot builds, switch the URL to https://repo.opencollab.dev/maven-snapshots/.

Building the Source

MCProtocolLib uses Maven to manage dependencies. To build the source code, run mvn clean install in the project root directory.

Support and Development

Please join the GeyserMC Discord server and visit the #mcprotocollib channel for discussion and support for this project.

License

MCProtocolLib is licensed under the MIT license.

About

A library for communication with a Minecraft client/server.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages