GetPlayerVehicleSeat

From Onset Developer Wiki
Revision as of 18:08, 14 December 2020 by BlueMountains (talk | contribs)
GetPlayerVehicleSeat

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Gets the vehicle seat a player is.

Syntax

GetPlayerVehicleSeat(player)

Parameters

  • player
    Player whos seat you want to get

Return Value

  • ID of the vehicle seat player is in

Example

function shuff(player)
   local veh = GetPlayerVehicle(player)
    --Check if player is inside a vehicle
   if veh ~= 0 then
      --if driver seat is empty
      if GetVehicleDriver(veh) == 0 or not GetVehicleDriver(veh) then
         if GetPlayerVehicleSeat(player) == 2 then --check if player is in passenger seat
            SetPlayerInVehicle(player, veh, 1)
         end
      end
   end
end
AddCommand('shuff', shuff)

See also

__EDIT_ME__