AttachPlayerParachute

From Onset Developer Wiki
AttachPlayerParachute

Type: Function
Context: Server
Introduced: v1.0

Description

Attach the specified player a parachute.

Syntax

AttachPlayerParachute(player, bAttach)

Parameters

  • player
    The player identifier.
  • bAttach
    The boolean status.

Return Value

  • This function returns true on success.

Example

AddCommand("parachute", function(player)
    AttachPlayerParachute(player, true)
end)

See also