另一个 Minecraft 聊天客户端
v1.11.1 -
AMCC 现已存档。一个更好的新版本即将推出,包括更多 Minecraft 版本、更干净的 GUI 和代码库、更多功能和Android 应用程序!
维基• 下载• ?从源代码构建
AMCC 是一款 GUI 应用程序,可让您加入 Minecraft 服务器并自由聊天,而无需打开游戏。
目录 |
---|
*❤️赞助商 |
* 主要特点 |
* 下载 |
* 使用插件API |
* 使用协议实现 |
* 从源代码构建 |
* 翻译 |
您可以在发布页面下载最新版本的 AMCC 以及插件和协议 API。
您可以通过以下方式将我们的插件 API 包含在您的项目中:
您可以在发布页面下载插件 API。
将其粘贴到您的pom.xml
中
< dependency >
< groupId >io.github.defective4.amcc groupId >
< artifactId >amcc-api artifactId >
< version >{version} version >
dependency >
{version}
是您要开发的发行版本。例如1.10.0
将其粘贴到您的build.gradle
中
dependencies {
implementation ' io.github.defective4.amcc:amcc-api:{version} '
}
{version}
是您要开发的发行版本。例如1.10.0
您可以通过以下方式将我们的项目实施纳入您的项目中:
您可以在发布页面下载协议实现。
将其粘贴到您的pom.xml
中
< dependency >
< groupId >io.github.defective4.amcc groupId >
< artifactId >amcc-protocol artifactId >
< version >1.10.0 version >
dependency >
将其粘贴到您的build.gradle
中
dependencies {
implementation ' io.github.defective4.amcc:amcc.protocol:1.10.0 '
}
如果您不想下载预构建版本,您还可以从源代码构建应用程序、插件 API 和协议实现。
git clone https://github.com/Defective4/Another-Minecraft-Chat-Client.git
cd Another-Minecraft-Chat-Client
mvn clean package
完成所有操作后,您将拥有:
amcc-app/target
目录中的可运行 AMCC 应用程序二进制文件。amcc-app-{version}-jar-with-dependencies.jar
amcc-api/target
目录中的依赖项。amcc-protocol/target
目录中的 javadoc 和依赖项进行协议实现。这个项目是我从头开始实施 Minecraft 协议的尝试。
它最初是一个简单的命令行聊天客户端,并很快被封装在 GUI 中。
现在我的主要目标是在不使用任何其他第三方库的情况下尽可能多地实现 Minecraft 原始协议的功能。