Включение работы onServerMessage по Checkbox

ReoGenT

Участник
Автор темы
90
6
Версия MoonLoader
.026-beta
У меня есть код который скрывает сообщение в чате хелперов:
Lua:
function samp.onServerMessage(color, text)
    if text:find("%[HC%]") then
        sampAddChatMessage("1", -1)
    end
end

Как мне активировать этот код когда я включу checkbox в имгуи окне?
 
Решение
Lua:
function samp.onServerMessage(color, text)
    if bool then
        if text:find("%[HC%]") then
            sampAddChatMessage("1", -1)
        end
    end
end
или
Lua:
function samp.onServerMessage(color, text)
    if not bool then return {color, text} end

    if text:find("%[HC%]") then
        sampAddChatMessage("1", -1)
    end
end