mimgui help me

Arizona Mobile 3

Потрачен
Автор темы
117
13
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Версия MoonLoader
Другое
как переписать етот код чтобы оно роботало в бозконечном цикле и активировалось по Check боксу

Код:
        if tab == 1 then
        imgui.CenterText('Название вашей семьи: '..fam)
        if imgui.Button(u8' Авто принятие в семью', imgui.ImVec2(-1, 25)) then 
                lua_thread.create(function()
        local mx, my, mz = getCharCoordinates(playerPed)
            for id = 0,1000 do
                _, handle = sampGetCharHandleBySampPlayerId(id)
                if _ then
                    local x, y, z = getCharCoordinates(handle)
                    if getDistanceBetweenCoords3d(x,y,z,mx,my,mz) <= 10 then
                        sampSendChat('/faminvite '..id)
                        wait(1000) --задержка
                    end
                end
            end
        end)
    end
 
  • Эм
Реакции: Hinаta

Spritoff

Известный
12
6
Lua:
-- в main



    while true do

    wait(0)

  

    if act then

        local mx, my, mz = getCharCoordinates(playerPed)

        for id = 0,1000 do

            _, handle = sampGetCharHandleBySampPlayerId(id)

            if _ then

            local x, y, z = getCharCoordinates(handle)

                if getDistanceBetweenCoords3d(x,y,z,mx,my,mz) <= 10 then

                    sampSendChat('/faminvite '..id)

                    wait(1000)

                end

            end

        end

    end

end



-- в gui



if imgui.Checkbox(Свои данные (имя,ключ)) then

    act = true

else

    act = false

end