ScriptingExamples/getNearestVehicleInRange: Difference between revisions

From GTA Connected
Jump to navigation Jump to search
No edit summary
 
(No difference)

Latest revision as of 16:59, 3 February 2019

Description

Fetch the nearest vehicle from a position and range

Code

Lua, Server & Client-Side, GTAC versions 1.1.10 and newer:

function getNearestVehicleInRange(position, distance)
    distance = distance or 5
    for index, vehicle in pairs(getVehicles()) do
        if position:distance(vehicle.position) <= distance then
            return vehicle
        end
    end
    return nil
end