Skip to content

blackd/libIPN

Repository files navigation

1 5 3

11 8 Javadoc

Inventory Profiles Next

Requirement: Minecraft 1.16.5 - 1.17, Fabric Loader 0.11.6, Forge 36.1.32

Mod download

Modrinth: https://modrinth.com/mod/inventory-profiles-next

CurseForge: https://www.curseforge.com/minecraft/mc-mods/inventory-profiles-next

Other MODs integration

The artefacts are available on Maven Central. The Javadoc is available here Javadoc. If your screen is not an inventory use @IPNIgnore annotation. If your screen is inventory but IPN buttons are not aligned properly look at @IPNGuiHint.

gradle:

Gradle examples are in kotlin DSL. Although currently there is no difference between fabric and forge APIs this is not a guarantee, we advise you to add dependency on the proper loader version.

Fabric

dependencies {
    compileOnly(group = "org.anti-ad.mc",
                name = "inventory-profiles-next",
                version = "fabric-1.17.1-1.1.0")
}

Forge

dependencies {
    compileOnly(group = "org.anti-ad.mc",
                name = "inventory-profiles-next",
                version = "forge-1.17.1-1.1.0")
}

Maven

Fabric

<dependency>
    <groupId>org.anti-ad.mc</groupId>
    <artifactId>inventory-profiles-next</artifactId>
    <version>fabric-1.17.1-1.1.0</version>
</dependency>

Forge

<dependency>
    <groupId>org.anti-ad.mc</groupId>
    <artifactId>inventory-profiles-next</artifactId>
    <version>forge-1.17.1-1.1.0</version>
</dependency>

TODO

  • learn Kotlin
  • learn about Minecraft modding :)