SetDoorLockState

From Nomad DB

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