- 478
- 20
как исправить чтобы нажимались все чекбоксы по отдельности ? и плез завизите крестик.)
Lua:
local imgui = require 'imgui'
local encoding = require 'encoding' -- загружаем библиотеку
local checkboxone = imgui.ImBool(false)
local checkboxtwo = imgui.ImBool(false)
local checkboxthree = imgui.ImBool(false)
local checkboxfour = imgui.ImBool(false)
local checkboxfive = imgui.ImBool(false)
local checkboxsix = imgui.ImBool(false)
local checkboxseven = imgui.ImBool(false)
local checkboxvosem = imgui.ImBool(false)
encoding.default = 'CP1251' -- указываем кодировку по умолчанию, она должна совпадать с кодировкой файла. CP1251 - это Windows-1251
u8 = encoding.UTF8 -- и создаём короткий псевдоним для кодировщика UTF-8
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand("hahl")
end
-- в этой функции осуществляется вся работа с ImGui
-- она вызывается каждый кадр, но только если imgui.Process равен true
function imgui.OnDrawFrame()
imgui.Begin('Han Helper | v0.0.1') -- новое окно с заголовком 'My window'
if imgui.Checkbox("test1", checkboxone) then
-- body
end
if imgui.Checkbox("test1", checkboxtwo) then
-- body
end
if imgui.Checkbox("test1", checkboxthree) then
-- body
end
if imgui.Checkbox("test1", checkboxfour) then
-- body
end
if imgui.Checkbox("test1", checkboxfive) then
-- body
end
if imgui.Checkbox("test1", checkboxsix) then
-- body
end
imgui.End() -- конец окна
end
function main()
imgui.Process = true -- ImGui будет обрабатываться, пока imgui.Process равен true
-- в этом примере мы просто активируем ImGui сразу же после загрузки игры
end