Skip to content

How To Install

Usage in your own mod

First add the required maven repository to your build.gradle file in the root

1
2
3
4
5
6
7
allprojects {
    repositories {
        maven {
            url "https://maven.thevrglab.com/"
        }
    }
}
and then modify the build.gradle for the proper project/Projects

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:common-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Danger

Forge is only supported until Minecraft 1.19.2

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:forge-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Warning

NeoForge is only supported from Minecraft 1.20.4 and onwards

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:neoforge-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Info

Fabric-Like is a project containing shared code between Fabric and Quilt

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:fabric-like-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}
1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:fabric-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Bug

Quilt is not supported for Minecraft 1.21.4. At the moment, certain external libraries needed for Quilt are not updated to 1.21.4, therefore Untill forthur notice Quilt is not supported

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:quilt-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}