VaultUnlocked

VaultUnlocked is a Chat, Permissions & Economy API to allow plugins to more easily hook into these systems without needing to hook each individual system themselves. Everything an API needs with out the driver fluff and nonsense.

File Details

2.18.3

  • R
  • Jan 20, 2026
  • 35.06 KB
  • 649
  • Early Access

File Name

VaultUnlocked-Hytale-2.18.3.jar

Supported Versions

  • Early Access

2.18.3

  • VaultUnlocked-Hytale now supports maven dependency and no longer requires hard linking through a lib jar.

Dependency Setup

VaultUnlocked is published to a public Maven repository and should be added as a provided / compile-only dependency.


Maven

<repositories>
  <repository>
    <id>codemc-creatorfromhell</id>
    <url>https://repo.codemc.io/repository/creatorfromhell/&lt;/url&gt;
  </repository>
</repositories>

<dependency>
  <groupId>net.cfh.vault</groupId>
  <artifactId>VaultUnlocked</artifactId>
  <version>2.18.3</version>
  <scope>provided</scope>
</dependency>

Gradle (Kotlin DSL)

repositories {
    maven("" rel="noopener nofollow" target="_blank">https://repo.codemc.io/repository/creatorfromhell/&quot;) {
        name = "VaultUnlocked"
    }
}

dependencies {
    compileOnly("net.cfh.vault:VaultUnlocked:2.18.3")
}

Gradle (Groovy DSL)

repositories {
    maven {
        url "" rel="noopener nofollow" target="_blank">https://repo.codemc.io/repository/creatorfromhell/&quot;
    }
}

dependencies {
    compileOnly 'net.cfh.vault:VaultUnlocked:2.18.3'
}

Notes

  • Use provided (Maven) or compileOnly (Gradle)
  • Do not shade or bundle VaultUnlocked into your plugin
  • VaultUnlocked will be supplied by the server at runtime
  • Prevents duplicate classes and classloader conflicts