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 [0,1].
- 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
- FormEditorID: DamageHealthLinger02
count: 3
- Each file needs to start with `containers:` (see spoiler).
- To add a new container simply start a new node with its `FormEditorID` as shown above.
- If you do not set `weight_limit` there won't be a weight limit for that container.
- If you do not set `cloud_storage`, the INI setting will be used. You can put here a boolean or a float value between 0 and 1 corresponding to the percentage of the total weight that is to be discarded. Boolean values true and false correspond to 100% and 0%, respectively.
0 comments