SetPlayerParachuteTintIndex
DocsSetPlayerParachuteTintIndex(player, tintIndex)Description
Tints:
None = -1,
Rainbow = 0,
Red = 1,
SeasideStripes = 2,
WidowMaker = 3,
Patriot = 4,
Blue = 5,
Black = 6,
Hornet = 7,
AirFocce = 8,
Desert = 9,
Shadow = 10,
HighAltitude = 11,
Airbone = 12,
Sunrise = 13,Parameters
| Name | Type | Description |
|---|---|---|
player | Player | — |
tintIndex | int | — |
Quick Snippet: Get Playerplayer
playerUse this to get the local player ID or a target player's server ID.
-- Get the local player index (client-side)
local playerId = PlayerId()
-- Get the local player's server ID (for server events)
local serverId = GetPlayerServerId(playerId)
print("Player ID: " .. playerId)
print("Server ID: " .. serverId)
-- Get player ped from a server ID:
-- local targetPed = GetPlayerPed(GetPlayerFromServerId(targetServerId))Returns
voidThis native does not return a value.