Native referenceFiveM

_ARE_OUTRIGGER_LEGS_DEPLOYED

0x3A9128352EAC9E85 VEHICLE
FUNCTION SIGNATURE
BOOL _ARE_OUTRIGGER_LEGS_DEPLOYED(Vehicle vehicle);
Property Value
Native Name _ARE_OUTRIGGER_LEGS_DEPLOYED
Hash 0x3A9128352EAC9E85
Return Type BOOL
Parameters vehicle (Vehicle)

Description: Returns whether the outrigger legs are deployed for the vehicle. The Chernobog is one of the few vehicles with outrigger legs.

NativeDB Introduced: v1290

Examples

local vehicle = GetVehiclePedIsIn(PlayerPedId(), false)
local deployed = AreOutriggerLegsDeployed(vehicle)
print("deploy state:", deployed)
Back to VEHICLE