SetOpen - ObjectReference

From the CreationKit Wiki
Revision as of 05:27, 26 May 2021 by imported>Rasikko
Jump to navigation Jump to search

Member of: ObjectReference Script

Opens or closes this object.

Syntax

Function SetOpen(bool abOpen = true) native

Parameters

  • abOpen: Whether to open or close this object
    • Default: True

Return Value

None

Examples

; Opens this door
JailDoor.SetOpen()


; Closes this door
JailDoor.SetOpen(false)

Notes

  • In addition to opening a door, it will also remove any lock level that is placed on it.

See Also