function Organizations_gh()
local organizations_ghetto = {
["Vagos"] = {color = 2580667164, players = {}},
["Rifa"] = {color = 0, players = {}},
["Aztecas"] = {color = 2566979554, players = {}},
["Groove"] = {color = 0, players = {}},
["Ballas"] = {color = 2580283596, players = {}},
["NW"] = {color = 2158524536, players = {}} -- цвета клистов рандомные, замени на нужные
}
for id = 0, 999 do
if sampIsPlayerConnected(id) then
for _, data in pairs(organizations_ghetto) do
if sampGetPlayerColor(id) == data.color then
table.insert(data.players, id)
end
end
end
return organizations_ghetto
end
end
function imgui.OnDrawFrame()
if window.v then
local tab = Organizations_gh()
imgui.Text(u8"Онлайн в вагос: ", tonumber(#tab["Vagos"].players))
imgui.Text(u8"Онлайн в Рифе: ", tonumber(#tab["Rifa"].players))
imgui.Text(u8"Онлайн в Ацтек: ", tonumber(#tab["Aztecas"].players))
imgui.Text(u8"Онлайн в Грув: ", tonumber(#tab["Groove"].players))
imgui.Text(u8"Онлайн в баллас: ", tonumber(#tab["Ballas"].players))
imgui.Text(u8"Онлайн в НВ: ", tonumber(#tab["NW"].players))
imgui.End()
end