local font = renderCreateFont("Arial", 10, 13)
function getPlayer()
local nick = {
"mex",
"vult.",
"fuze",
"Ascenee",
"jN.Lepton.",
"CoCuCo4Ka",
".nevermore",
"jN.Kamik@dze.",
"Sereja_Qcold",
"[Q]EvGenyi"
}
local connectedPlayers = {}
for id = 0, sampGetMaxPlayerId() do
if sampIsPlayerConnected(id) then
local playerName = sampGetPlayerNickname(id):lower()
local playerColor = sampGetPlayerColor(id)
for _, nickPlayer in ipairs(nick) do
if string.find(playerName, nickPlayer:lower(), 1, true) then
local playerText = string.format("{%06X}%s[%d]", playerColor, sampGetPlayerNickname(id), id)
table.insert(connectedPlayers, playerText)
break
end
end
end
end
return connectedPlayers
end
function main()
repeat wait(0) until isSampAvailable()
while true do wait(0)
local connectedPlayers = getPlayer()
local text = table.concat(connectedPlayers, "\n")
local finalText = "Игроки:" .. "\n" .. text
renderFontDrawText(font, finalText, 2, 300, -1)
end
end