CreateDoor

From Onset Developer Wiki
CreateDoor

Type: Function
Context: Server
Introduced: v1.0

Description

Creates stateful doors which can be interacted with by players by pressing 'E'. Some of them are physics doors meaning they are pushed open by running against them.

See available doors here Doors.

Syntax

CreateDoor(modelid, x, y, z, rotation [, bEnableInteract])

Parameters

  • modelid
    The door from this list: Doors.
  • x
    World X location.
  • y
    World Y location.
  • z
    World Z location.
  • rotation
    Yaw rotation of the door.
  • bEnableInteract (optional)
    true means it will send a request to the server when the player presses the 'E' key. false to disable that.

Return Value

  • Returns the identifier to the door.

Example

function OnPackageStart()
    CreateDoor(40, -161386.000000, -39784.500000, 1085.000000, 0.0, true)
end
AddEvent('OnPackageStart', OnPackageStart)

See also