Короче переключаются только 1 и 2 верхние кнопки, остальные не работают.
Lua:
local imb = imgui.ImInt(0)
local imb1 = imgui.ImInt(0)
if imgui.RadioButton(u8'Включить', imb,1) then
sampAddChatMessage('test1',-1)
end
imgui.SameLine()
if imgui.RadioButton(u8'Выключить', imb,2) then
sampAddChatMessage('test2',-1)
end
if imgui.RadioButton(u8'Включить', imb1,1) then
sampAddChatMessage('test3',-1)
end
imgui.SameLine()
if imgui.RadioButton(u8'Выключить', imb1,2) then
sampAddChatMessage('test4',-1)
end
