Background for Fallout 4
Member of the FavoritesManager script
Form[]functionGetFavorites()NativeGlobal

Description

Wiki Description

Returns all 12 favorites which may contain none entries.

Documentation Comment

Returns all 12 favorites, may contain None entries


Caveats

CK Wiki - Notes

None


Examples

{For each favorite form}
Form[] favorites = FavoritesManager.GetFavorites()
If (favorites)
    int index = 0
    While (index < favorites.Length)
        Debug.Trace("Favorited item at index " + index + " is " + favorites[index])
        index += 1
    EndWhile
Else
    Debug.Trace("There are no favorite items.")
EndIf

Auto-Generated Example

Form[] returnedValue = FavoritesManager.GetFavorites()

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.