Requirement: Minecraft 1.16.5 - 1.17, Fabric Loader 0.11.6, Forge 36.1.32
Modrinth: https://modrinth.com/mod/inventory-profiles-next
CurseForge: https://www.curseforge.com/minecraft/mc-mods/inventory-profiles-next
The artefacts are available on Maven Central.
The Javadoc is available here . 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 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.
dependencies {
compileOnly(group = "org.anti-ad.mc",
name = "inventory-profiles-next",
version = "fabric-1.17.1-1.1.0")
}
dependencies {
compileOnly(group = "org.anti-ad.mc",
name = "inventory-profiles-next",
version = "forge-1.17.1-1.1.0")
}
<dependency>
<groupId>org.anti-ad.mc</groupId>
<artifactId>inventory-profiles-next</artifactId>
<version>fabric-1.17.1-1.1.0</version>
</dependency>
<dependency>
<groupId>org.anti-ad.mc</groupId>
<artifactId>inventory-profiles-next</artifactId>
<version>forge-1.17.1-1.1.0</version>
</dependency>
- learn Kotlin
- learn about Minecraft modding :)