Skip to content

Latest commit

 

History

History
87 lines (70 loc) · 1.95 KB

README.md

File metadata and controls

87 lines (70 loc) · 1.95 KB

CrazyAdvancementsAPI

About

CrazyAdvancementsAPI is an API for creating and managing Advancements programmatically on Minecraft Spigot Servers

Maven

Maven only works in API Version 2.1.17a and higher.

First, add the Jitpack Repository to your repositories

<repositories>
  <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
  </repository>
</repositories>

Then, add the following to your dependencies:

<dependency>
    <groupId>com.github.ZockerAxel</groupId>
    <artifactId>CrazyAdvancementsAPI</artifactId>
    <version>VERSION</version>
</dependency>

Or for mojang-mapped jar:

<dependency>
    <groupId>com.github.ZockerAxel</groupId>
    <artifactId>CrazyAdvancementsAPI</artifactId>
    <version>VERSION</version>
    <classifier>mojmap</classifier>
</dependency>

Replace VERSION with the Version you want, for example for v2.1.17a, you would use:

<dependency>
    <groupId>com.github.ZockerAxel</groupId>
    <artifactId>CrazyAdvancementsAPI</artifactId>
    <version>v2.1.17a</version>
</dependency>

Gradle

Gradle only works in API Version 2.1.17a and higher.

First, add the Jitpack Repository to your repositories

repositories {
    maven { url 'https://jitpack.io' }
}

Then, add the following to your dependencies:

dependencies {
    compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:VERSION")
}

Or for mojang-mapped jar

dependencies {
    compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:VERSION:mojmap")
}

And replace VERSION with the Version you want, for exmaple for v2.1.17a, you would use:

dependencies {
    compileOnly("com.github.ZockerAxel:CrazyAdvancementsAPI:v2.1.17a")
}

Documentation

The Official Documentation can be found here

There is also Javadoc available here