function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(2000) end
sampRegisterChatCommand('nick', function(arg)
if #arg > 0 then
if getPlayerIdByNickname(tostring(arg)) then
sampAddChatMessage('Игрок с таким ником есть на сервере!', -1)
else
sampAddChatMessage('Такого челика нет', -1)
end
end
end)
sampAddChatMessage('КУ', 0xFF0000)
while true do
wait(0)
end
end
-- функция находящая ид по нику. В любое место кода
function getPlayerIdByNickname(name)
for i = 0, sampGetMaxPlayerId(false) do
if sampIsPlayerConnected(i) then
if sampGetPlayerNickname(i):lower() == tostring(name):lower() then
return i
end
end
end
end