Mod articles
-
Setting up containers with YAML files
The YAML configs go to SKSE\Plugins\Containerize\presets folder. They can have any name.
Example YAML (indentations matter!):
bandoliers.yml
containers:
- FormEditorID: 1Dr_BAN_SatchelR # form or editor id of the containerized item. in this case editor id.
weight_limit: 50 # weight limit of the container
cloud_storage: true # items added to container wont change its total weight. can also be a number in .
- FormEditorID: 1Dr_BAN_BeltBagR
weight_limit: 50
initial_items: # these will be "starting items" for 1Dr_BAN_BeltBagR, i.e. they will be in it.
- FormEditorID: RestoreHealth05 # health potion
count: 3
... -
You have the following options. The values shown here are the default ones.
; Set to false to suppress the 'INI changed between saves' message.
INI_changed_msg = true
; Set to true to remove the initial carry weight bonuses on your container items.
RemoveCarryBoosts = true
; Set to true to return to the initial menu after closing your container's menu (which you had opened by holding equip).
ReturnToInitialMenu = true
; Set to true to sell your container to vendors together with the items inside it.
BatchSell = true
; Set to true to make your containers weigh nothing by default.
CloudStorage = false
----------------------------------------------------------------------------------------------...