SetDoorLockState

From Nomad DB
Revision as of 20:37, 27 October 2020 by SpeckBomber (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Locks or unlocks the specified door entity (entities that have a CDoorComponent).

Syntax

SetDoorLockState(doorEntityId, lockState)
  • doorEntityId (string): ID of the door entity to set the lock state of
  • lockState (number): Lock state to set (0 = unlock; 1 = lock)

Example

Closes the specified door entity.

SetDoorLockState("123", 0)

Related Pages