Помогите как лучше юзать samp.events

.Freeze

Участник
Автор темы
42
3
Версия MoonLoader
.027.0-preview
Добрый день можно вопрос? как лучше использовать поиск текста через onServerMessage.
Примеры кода:

lua:
while true do wait(0)
    if state then
        function samp.onServerMessage(text)
            if text:find('Абоба') then
                sampAddChatMessage('Yes', -1)
            end
        end
    end
end

lua:
while true do wait(0)
    if state then
        Searth_Text()
    end
end

function Searth_Text()
    function samp.onServerMessage(text)
        if text:find('Абоба') then
            sampAddChatMessage('Yes', -1)
        end
    end
end