Bypass start vehicle check
Example
-- This command will make the player bypass the current vehicle start conditions
RegisterCommand("startbypass", function()
local plyPed = PlayerPedId()
local plyVeh = GetVehiclePedIsIn(plyPed)
Entity(plyVeh).state.canAlwaysStart = true
end)Last updated