Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Tnze/go-mc

Repository files navigation

Go-MC

Require Go version: 1.22

There's some library in Go support you to create your Minecraft client or server.
Zhe Shi Yi Xie GolangKu ,Yong Yu Bang Zhu Ni Bian Xie Zi Ji De MinecraftKe Hu Duan Huo Fu Wu Qi .

  • Minecraft network protocol
  • Robot framework
  • Server framework
  • Dual role RCON protocol (Server & Client)
  • Chat Message (Support both Json and old SS format)
  • NBT (Based on reflection)
  • SNBT = NBT
  • Regions & Chunks & Blocks
  • Yggdrasil (Mojang login)
  • Realms Server

We don't promise that API is 100% backward compatible.

Getting start

Go-MC tag the old version after new version released. For example, if 1.19.4 is the latest Minecraft version, the newest go-mc tag will be v1.19.3. To get the latest Go-MC that support 1.19.4, usually you must use go get -u github.com/Tnze/go-mc@master. Special cases are version like 1.19, the Go-MC support it is tagged v1.19.0 to avoid automatically upgrade.

Examples:
To get the latest version: go get github.com/Tnze/go-mc@master
To get old versions (e.g. 1.18.2): go get github.com/Tnze/go-mc@v1.18.2 To get the first of each primary version: go get github.com/Tnze/go-mc@v1.19.0

Run Examples

  • Run go run github.com/Tnze/go-mc/examples/mcping localhost to ping and list the localhost mc server.
  • Run go run github.com/Tnze/go-mc/examples/daze to join the local server at localhost:25565 as player named Daze on the offline mode.