Subnautica

File information

Last updated

Original upload

Created by

RandyKnapp

Uploaded by

randyknapp

Virus scan

Safe to use

About this mod

Edit the size of any container in the game, including the player inventory!

Requirements
Permissions and credits
Donations
CustomizedStorage
by RandyKnapp
built for QMods Mod System

Increase the size of any container in the game, including the player inventory! A config.json file is included with this mod and the values start at the STANDARD SIZES, so you'll need to customize any containers that you want to be different sizes. Please see below for customization instructions:

Changelog:
1.0.1
- Added customization for the Water Filtration Machine
1.0.2
- Updated mod for the Big Little update
1.0.3
- Fixed a bug where the size was not consistent when loading from a save
1.0.4
- Fixed for 2019 Update
1.0.5
- Limits on storage now increased to 10000
- Removed limits on PrawnSuit storage

QMods Instructions:
  • Download and install QMods
  • Extract CustomizedStorage.zip to your Subnautica install directory
  • Run the game

Configuration:
  • IMPORTANT: Customization is completely different in this mod than in my other mods
  • Open the file config.json in the mod directory. It should look like this:
{
  "Inventory": {
    "width": 6,
    "height": 8
  },
  "SmallLocker": {
    "width": 5,
    "height": 6
  },
  "Locker": {
    "width": 6,
    "height": 8
  },
  "EscapePodLocker": {
    "width": 4,
    "height": 8
  },
  "CyclopsLocker": {
    "width": 3,
    "height": 6
  },
  "WaterproofLocker": {
    "width": 4,
    "height": 4
  },
  "CarryAll": {
    "width": 3,
    "height": 3
  },
  "Exosuit": {
    "width": 6,
    "baseHeight": 4,
    "heightPerStorageModule": 1
  },
  "SeamothStorage": {
    "width": 4,
    "height": 4
  },
  "BioReactor": {
    "width": 4,
    "height": 4
  },
  "FiltrationMachine": {
    "width": 4,
    "height": 4,
    "maxSalt": 8,
    "maxWater": 8
  }
}
  • Edit any width or height value that you want. Width and Height have to be greater than or equal to 1, and Width has to be less than or equal to 10000, and Height less than or equal to 10000.
  • Exosuit no longer has any limits
  • For FiltrationMachine, maxSalt + maxWater cannot be greater than width * height.