Skip to content

Latest commit

 

History

History
96 lines (76 loc) · 3.04 KB

README.md

File metadata and controls

96 lines (76 loc) · 3.04 KB

1 5 3

11 8 Javadoc

Inventory Profiles Next

Requirement: Minecraft 1.16.5 - 1.21, 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

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.

Repository

repositories {
    maven {
        name = "IPN-Releases"
        mavenContent {
            releasesOnly()
        }
        content {
            includeGroup("org.anti_ad.mc")
            includeGroup("ca.solo-studios")
        }
        url = uri("https://maven.ipn-mod.org/releases")
    }
}

Fabric

dependencies {
    compileOnly(group = "org.anti-ad.mc",
                name = "InventoryProfilesNext-fabric-1.21",
                version = "2.0.1")
    // for libIPN usually you don't need it
    compileOnly(group = "org.anti-ad.mc",
                name = "libIPN-fabric-1.21",
                version = "5.0.1",
                classifier = "dev")
}

Forge

dependencies {
    compileOnly(group = "org.anti-ad.mc",
                name = "InventoryProfilesNext-forge-1.21",
                version = "2.0.1")
    // for libIPN usually you don't need it
    compileOnly(group = "org.anti-ad.mc",
                name = "libIPN-forge-1.21",
                version = "5.0.1",
                classifier = "dev")
}

Maven

Who uses maven still :D

TODO

  • learn Kotlin
  • learn about Minecraft modding :)