Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.Querz:mcaselector:2.5.2'
}
dependencies {
implementation("com.github.Querz:mcaselector:2.5.2")
}
<dependency>
<groupId>com.github.Querz</groupId>
<artifactId>mcaselector</artifactId>
<version>2.5.2</version>
</dependency>
libraryDependencies += "com.github.Querz" % "mcaselector" % "2.5.2"
:dependencies [[com.github.Querz/mcaselector "2.5.2"]]
MCA Selector modifies and deletes chunks in your Minecraft world. Please make backups of your world before using.
Download Version <!--vs-->2.5.2<!--ve--> (Windows Installer)
Download Version <!--vs-->2.5.2<!--ve--> (Universal)
The wiki can be found here.
For people who prefer watching a video to understand how the MCA Selector works, there some very good tutorials on YouTube explaining the basics:
MCA Selector currently supports the following Minecraft versions:
| Minecraft Version | DataVersion | |-------------------|--------------| | 1.2.1 - 1.12.2 | None - 1343 | | 1.13 - 1.13.2 | 1444 - 1631 | | 1.14 - 1.14.4 | 1901 - 1976 | | 1.15 - 1.15.2 | 2200 - 2230 | | 1.16 - 1.16.5 | 2566 - 2586 | | 1.17 - 1.17.1 | 2724 - 2730 | | 1.18 - 1.18.2 | 2825 - 2975 | | 1.19 - 1.19.4 | 3105 - 3337 | | 1.20 - 1.20.6 | 3463 - 3839 | | 1.21 - 1.21.5+ | 3953 - 4125+ |
There is no guarantee for worlds generated in a Snapshot version to work, even if it is specified in the table above. This only represents the current development status towards the next Minecraft release. Old Snapshots of past Minecraft releases are not officially supported.