OnPlayerInteractDoor: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Event|Server|1.0}} {{FuncDescription|Called when a player interacts with a door through pressing 'E'.}} {{FuncSyntax|OnPlayerInteractDoor(player, door, bWantsOpen)}}...")
(No difference)

Revision as of 10:01, 8 October 2019

OnPlayerInteractDoor

Type: Event
Context: Server
Introduced: v1.0

Description

Called when a player interacts with a door through pressing 'E'.

Syntax

OnPlayerInteractDoor(player, door, bWantsOpen)

Parameters

  • player
    The player identifier.
  • door
    The door identifier.
  • bWantsOpen
    true if the door is currently closed on the client and therefore wants it open and vice versa.

Example

AddEvent("OnPlayerInteractDoor", function(player, door, bWantsOpen)
	--AddPlayerChat(player, "Door: "..door..", "..tostring(bWantsOpen))

	-- Let the players open/close the door by default.
	if IsDoorOpen(door) then
		SetDoorOpen(door, false)
	else
		SetDoorOpen(door, true)
	end
end)

See also

Player

Vehicle

Game

Package

NPC

Object

Pickup

Text3D

Door