function lvl(id)
local id = tonumber (id)
if not id then
sampAddChatMessage ('Хай ку, ід введи', -1)
end
if not sampIsPlayerConnected(id) then
sampAddChatMessage('Нет таких, не долбись в глаза, введи ид правильно', -1)
else
sampAddChatMessage('Nick: '..sampGetPlayerNickname(id)..'. Lvl: '..sampGetPlayerScore(id)..'.', -1)
end
end