

This mod allows users to easily add item slots for whatever they want in their game using JSON files.
If you're familiar with .json formatting this should be pretty easy to set up on your own.
On the first launch, it will generate an example reserved tool belt slot.
Go to BepinEx/config/JsonReservedSlots
In that folder, you will find UtilityBeltSlot.json and PlayerBones.txt
After the first launch the mod should generate UtilityBeltSlot.json
You can open this file and use it as an example for building your own utility slots.
reservedSlotName is the name of your slot. Proper formatting should be all lowercase and underscores with no spaces.
slotPriority is used by ReservedItemSlotCore to determine the position of your item slot on the side of the screen relative to other item slots. Negative numbers are used to place slots on the left side of the screen instead of the right. Make sure your config for ReservedItemSlotCore is set up correctly.
purchasePrice is the price of buying the slot from the terminal if you have buying slots enabled in ReservedItemSlotCore enabled. When the price is set to 0 it will automatically be unlocked even if buying slots is enabled.
itemsForSlot is an array of all the items the player can put inside your slot.
The only thing each item in itemsForSlot requires is itemName. itemName is case-sensitive and should be the name of an in-game item. You can add as many of these as you'd like.
If you want to get more advanced you can also give each item in itemsForSlot a bone, position, and rotation value. If you set the bone to anything other than 0 it will show the item cosmetically on the player's body.
When the config folder is generated you should find PlayerBones.txt inside.
This text file contains the IDs of every player bone. You can use this to set what bone items are attached to to make them visible on the player's body. If you set it to 0, the id for None, or if you don't include a bone, it will not show the item on the player's body.
Here is an example of a reserved Key slot:
{
"reservedSlotName": "key_slot",
"slotPriority": -100,
"purchasePrice": 0,
"itemsForSlot": [
{
"itemName": "Key"
}
]
}
This mod only looks for .json files located inside the BepInEx/config/JsonReservedSlots folder. If your .json files are not in this folder then they WILL NOT be registered in game.
This mod uses ReservedItemSlotCore by FlipMods
You should totally check out their other mods because they make some great stuff.