Помощь по имгуи

Kegwineye.

Участник
Автор темы
478
20
Версия MoonLoader
Другое
Помогите как сделать чтобы , чтобы один чекбокс отвечал за один чит, а другой чек бокс за другой чит, просто сделать local checked_test = imgui.ImBool(false)
checked_box = imgui.ImBool(false)

funcsion main()
...
if checked_test then
-- функция
end

if checked_box then
-- funcsion
end

И потом в бегине сделать
Imgui.Checkbox("Number1", checked_test)
Imgui.Checkbox("number2", checked_box)



Tак делать?
 
Решение
Помогите как сделать чтобы , чтобы один чекбокс отвечал за один чит, а другой чек бокс за другой чит, просто сделать local checked_test = imgui.ImBool(false)
checked_box = imgui.ImBool(false)

funcsion main()
...
if checked_test then
-- функция
end

if checked_box then
-- funcsion
end

И потом в бегине сделать
Imgui.Checkbox("Number1", checked_test)
Imgui.Checkbox("number2", checked_box)



Tак делать?
Lua:
-- local
local enable1 = imgui.ImBool(false)
local enable2 = imgui.ImBool(false)

-- imgui
imgui.Checkbox('WallHack', enable1)
imgui.Checkbox('Aim', enable2)

-- function
if enable1.v then
    --code
end

if enable2.v then
    --code
end

Rice.

Известный
Модератор
1,755
1,654
Помогите как сделать чтобы , чтобы один чекбокс отвечал за один чит, а другой чек бокс за другой чит, просто сделать local checked_test = imgui.ImBool(false)
checked_box = imgui.ImBool(false)

funcsion main()
...
if checked_test then
-- функция
end

if checked_box then
-- funcsion
end

И потом в бегине сделать
Imgui.Checkbox("Number1", checked_test)
Imgui.Checkbox("number2", checked_box)



Tак делать?
Lua:
-- local
local enable1 = imgui.ImBool(false)
local enable2 = imgui.ImBool(false)

-- imgui
imgui.Checkbox('WallHack', enable1)
imgui.Checkbox('Aim', enable2)

-- function
if enable1.v then
    --code
end

if enable2.v then
    --code
end
 
  • Нравится
Реакции: Kegwineye.

Rice.

Известный
Модератор
1,755
1,654
ещё можешь помочь найти id закладки ?

Через него ищи айди закладок
 

Kegwineye.

Участник
Автор темы
478
20


Через него ищи айди закладок
18: unexpected symbol near 'local' , хотя 18 строчка - local enable = imgui.ImBool(false)
 
Последнее редактирование:

Kegwineye.

Участник
Автор темы
478
20
require "lib.moonloader"
local keys = require "vkeys"
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'C1251'
u8 = encoding.UTF8

local tag = "[My First Script]:"
local label = 0
local main_color = 0x5A90CE
local main_color_text = "{5A90CE}"
local white_color = "{FFFFFF}"
local menu = 1

local main_window_state = imgui.ImBool(false)
local text_buffer = imgui.ImBuffer(256) -

local checkbox1 = imgui.ImBool(false)
local checkbox2 = imgui.ImBool(false)
local checkbox3 = imgui.ImBool(false)

-- for combo
local combo_select = imgui.ImInt(1)
local arr_str = {"test1", "test2", "test3"}

function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end

sampRegisterChatCommand("hel", cmdimgui)

handle, id = sampGetPlayerIdByCharHandle(PLAYER_PED)
nick = sampGetPlayerNickname(id)

imgui.Process = false

while true do
wait(0)

if checkbox1.v then
for handle, v in pairs(getAllObjects()) do
local asd
if sampGetObjectSampIdByHandle(v) ~= -1 then
asd = sampGetObjectSampIdByHandle(v)
end
if isObjectOnScreen(v) then
local result, oX, oY, oZ = getObjectCoordinates(v)
local x1, y1 = convert3DCoordsToScreen(oX,oY,oZ)
local objmodel = getObjectModel(v)
local x2,y2,z2 = getCharCoordinates(PLAYER_PED)
local x10, y10 = convert3DCoordsToScreen(x2,y2,z2)
distance = string.format("%.0f", getDistanceBetweenCoords3d(oX,oY,oZ, x2, y2, z2))
if objmodel == 3930 then renderDrawLine(x10, y10, x1, y1, 2, 0xFFFFFF) renderFontDrawText(font,"{FFFF00}Resource:FF0000}"..distance, x1, y1, -1) end
end
end
end
end -- function
end

if main_window_state.v == false then
imgui.Process = false
end
function cmdimgui()
main_window_state.v = not main_window_state.v
imgui.Process = main_window_state.v
end

function imgui.OnDrawFrame()
imgui.Begin("Start imgui", main_window_state)
imgui.BeginChild("##left", imgui.ImVec2(200, 85), true)
if imgui.Button('Menu', imgui.ImVec2(180, 20)) then menu = 1 end
if imgui.Button('Settings', imgui.ImVec2(180, 20)) then menu = 2 end
if imgui.Button('Author', imgui.ImVec2(180, 20)) then menu = 3 end

imgui.EndChild()

imgui.SameLine()

imgui.BeginChild("##right", imgui.ImVec2(400, 150), true)
if menu == 1 then
imgui.Text('Wall Hack')
imgui.Checkbox('Resource', checkbox1)
end
if menu == 2 then
imgui.Text('Settings')
imgui.Combo("", combo_select, arr_str, #arr_str)
end
if menu == 3 then
imgui.Text('Автором скрипта является - han')
end
imgui.EndChild()
imgui.End()
end
-- end тут не нужен

вправду я сменил с enabel на checkbox1/2/3. Но хоть и Enabel все равно не работает

@Rice. не знаешь в чём проблеама ?
 
Последнее редактирование:

Kegwineye.

Участник
Автор темы
478
20
убери здесь тире
local text_buffer = imgui.ImBuffer(256) -
теперь [ML] (error) testimgui.lua: Script died due to an error. (1734CE24)

[C]: in function 'require'
C:\Games\GTA-SA\GTA for Low PC\moonloader\lib\imgui.lua:6: in main chunk
[C]: in function 'require'
C:\Games\GTA-SA\GTA for Low PC\moonloader\testimgui.lua:3: in main chunk
[ML] (error) testimgui.lua: Script died due to an error. (1734CE24)

убери здесь тире
local text_buffer = imgui.ImBuffer(256) -
окно через крестик не закрывается, как исправить

убери здесь тире
local text_buffer = imgui.ImBuffer(256) -
в других темах хелпануть можешь ? брат
 
Последнее редактирование: