local samp = require('samp.events')
local id_player = ''
function samp.onServerMessage(color, text)
if text:find('qwertyuiop .+%[%d+%] qwertyu') then
id_player = text:match('qwertyuiop .+%[(%d+)%] qwertyu') -- Получим ИД игрока
if stream_check_id(id_player) then
print('Игрок под ID: ' .. id_player .. 'сейчас в зоне стрима')
end
end
end
function stream_check_id(arg)
for k, v in pairs(getAllChars()) do
if doesCharExist(v) then
local result, id =...