Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

Quantumyilmaz

Uploaded by

Quantumyilmaz

Virus scan

Safe to use

Tags for this mod

Mod articles

  • Preset Creation

    Let's start with an example. Say you want to get an empty bottle whenever you use a filled water bottle for cooking.

    The preset for that would look like this (indentations matter!):

    ownerLists:
    - owners:
      remnants:
      - FormEditorID: Misc_GlassBottleEmpty
        count: 1
        bench: 1



    Preset files need to always start with `ownerLists:`.


    Then, for every item or group of items, whose "remnants" you want to specify, you start with a new node `- owners:`.
    On the right-hand side of this should be the list of items, whose "remnants" you want to specify.

    This list can contain the FormIDs and/or EditorIDs of the items.
    If it is only one item, you can ge...