registerVariable("ClosestCarId", "ID Ближайшего транспорта", function()
local minDist = 9999
local closestId = -1
local x, y, z = getCharCoordinates(PLAYER_PED)
for i, k in ipairs(getAllVehicles()) do
local xi, yi, zi = getCarCoordinates(k)
local dist = math.sqrt( (xi - x) ^ 2 + (yi - y) ^ 2 + (zi - z) ^ 2 )
if dist < minDist then
minDist = dist
result, closestId = sampGetVehicleIdByCarHandle(k)
end
end
return closestId
end