function main()
repeat wait(0) until isSampAvailable()
while true do wait(0)
for k, v in ipairs(getAllVehicles()) do
x, y, z = getCarCoordinates(v)
myx, myy, myz = getCharCoordinates(PLAYER_PED)
dist = getDistanceBetweenCoords3d(x, y, z, myx, myy, myz)
if dist < 5 then
sampAddChatMessage('Около тебя автомобиль', -1)
end
end
end