SetOpen - ObjectReference

From the CreationKit Wiki
Revision as of 05:28, 26 May 2021 by imported>Rasikko (→‎Notes: clarified note a little better.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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

  • When used to open a door, it will also remove any lock level that is placed on it.

See Also