Vault

Virtual storage for items also known as stash in tarkov or vault in unturned. MySQL is optional !


Features

  • Allow your players to store items in a safe place with no duplication glitches
  • MySQL is optional ! We provide LiteDB provider in case you don't want to set up MySQL
  • Multiple vaults per user support
  • Support for Group vaults. Vaults can be shared across players like police officers
  • All translations support Rich Text

Permissions

Grant access to the /vault command: vault

Grant access to the /vaults command: vaults

Grant access to the /trash command: trash


Configuration

<?xml version="1.0" encoding="utf-8"?>
<VaultPluginConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DatabaseType>LiteDB</DatabaseType>
  <MySqlConfiguration>
    <ServerAddress>127.0.0.1</ServerAddress>
    <ServerPort>3306</ServerPort>
    <Username>root</Username>
    <Password>password</Password>
    <DatabaseName>unturned</DatabaseName>
    <ConnectionString />
  </MySqlConfiguration>
  <Vaults>
    <Vault>
      <Id>small</Id>
      <Name>Small</Name>
      <Permission>vault.small</Permission>
      <GroupVault>false</GroupVault>
      <Size width="5" height="4" />
      <BlacklistedItems>
        <Item id="519" bypassPermission="bypass.rocketlauncher" />
        <Item id="Rocket" bypassPermission="bypass.rocket" />
      </BlacklistedItems>
    </Vault>
    <Vault>
      <Id>big</Id>
      <Name>Big</Name>
      <Permission>vault.big</Permission>
      <GroupVault>false</GroupVault>
      <Size width="10" height="10" />
      <BlacklistedItems />
    </Vault>
    <Vault>
      <Id>police</Id>
      <Name>Police</Name>
      <Permission>vault.police</Permission>
      <GroupVault>true</GroupVault>
      <Size width="10" height="20" />
      <BlacklistedItems />
    </Vault>
  </Vaults>
  <Trash width="5" height="10" />
</VaultPluginConfiguration>

Translatation

<?xml version="1.0" encoding="utf-8"?>
<Translations xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Translation Id="VaultGained" Value="You have got access to the {0} vault" />
  <Translation Id="VaultLost" Value="You have lost access to the {0} vault" />
  <Translation Id="NoVault" Value="You don't have access to any vault" />
  <Translation Id="VaultNotFound" Value="Vault named {0} was not found" />
  <Translation Id="VaultAlreadyOpened" Value="The vault is already being opened by another player. Please wait !" />
  <Translation Id="VaultList" Value="You have access to the following vaults:" />
  <Translation Id="VaultListItem" Value="- {0} [Slots: {1}]" />
</Translations>