Background for Skyrim SE

The FormList Script

    The FormList script is a part of Skyrim SE’s Papyrus scripting ecosystem. It is included with the base game, and is extended/modified by modded sources such as Skyrim Script Extender x64 (SKSE).

    For this script, the Papyrus index knows about:

    • 9 functions


    Inheritance Tree

    No indexed scripts extend this script.

    Properties

    No properties found.

      Events

        No events found.

      Functions

      • voidfunctionAddForm(FormapForm)Native

        Adds the given form to the form list.

      • intfunctionFind(FormapForm)Native

        Finds the specified form in the form list and returns its index or returns -1 if it's not a member.

      • intfunctionGetSize()Native

        Returns the number of items in the list.

      • FormfunctionGetAt(intaiIndex)Native

        Returns the form at a specified index in the list.

      • boolfunctionHasForm(FormakForm)Native

        Returns whether the passed-in form exists in this form list.

      • voidfunctionRemoveAddedForm(FormapForm)Native

        Removes the given added form from the form list. Only forms added to the list via calls to AddForm can be removed.

      • voidfunctionRevert()Native

        Removes all script added forms from the list.

      • Form[]functionToArray()Native

        SKSE64 additions built 2024-01-17 20:01:40.731000 UTC
        Returns a Form array of this list (Invalid entries will be None)

      • voidfunctionAddForms(Form[]forms)Native

        Adds an Array of Forms to this list

      Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.