--[[
getAllLabels() = {
[id] = {
float distance,
int color,
bool test_los,
int player_id,
int vehicle_id,
string text,
table position
},
...
}
]]
local sf = string.format
for key, label in pairs(getAllLabels()) do
-- key = ид, value (label) = все что содержит данные лабела, как таблица. сверху есть структура
if label and label.color then -- добавляем проверку на существование, рано или поздно скрипт возможно крашнет если объект nil'овое значение
print(sf('\n[%d] - distance: %f\ncolor: %d - test_los: %s\n', key, label.distance, label.color, label.test_los))
end
end