另一個 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 原始協議的功能。