FormList

From the Fallout4 CreationKit Wiki
Revision as of 01:06, 29 March 2018 by imported>Qazaaq
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Type: FLST
Papyrus: FormList Script

A FormList is an ordered list of forms; these lists can be used in a wide variety of places, such as Conditions. Papyrus scripts can also add items onto the end of a FormList, making FormLists a powerful way to build systems that mods can extend. For example, the workshop menus are actually implemented as a series of FormLists that point to other FormLists, so mods can use Papyrus to add their own menus without conflicting with each other.

Editor Dialog[edit | edit source]

FormList Editor.png

  • ID: The ID, also referred to as Editor ID, is used by the Creation Kit to uniquely identify this record within a Data File.
  • Name: This object's name as it will appear within user interface menus or when the player looks at it. A short span of text that is only shown in the Object Window. You can use this to add a quick comment to the list explaining its purpose or where it is used.
  • List: The forms in this list. You can reorder forms in the list by selecting them and using the << and >> buttons. You can also quickly add a group of forms to the list by multi-selecting them in the Object Window, and then dragging them into the list panel in this dialog box.

See Also[edit | edit source]