Вопрос Osiris IMGUI

Новичок
Статус
Оффлайн
Регистрация
24 Ноя 2020
Сообщения
1
Реакции[?]
0
Поинты[?]
0
Was wondering how to change the imgui in osiris to another paste, since I know everyone says C + P or ctrl V etc, but whenever i try it just get errors, so any advice would be great :)
 
Пользователь
Статус
Оффлайн
Регистрация
19 Янв 2019
Сообщения
348
Реакции[?]
99
Поинты[?]
6K
example:
C++:
ImGui::Begin("Test", &IsPressInsert, ...);
{
    ImGui::BeginChild("");
    {
        // Vars
        static const char* type_y[] = { "None", "Backwards", "..."};
        
        // Elements
        ImGui::CheckBox("AA Enable", &csgo::Get().Config.Antiaim.Active);
        ImGui::ComboBox("Yaw", &csgo::Get().Config.Antiaim.Yaw, type_y, ARRAYSIZE(type_y));
        ImGui::Text("Welcome to Onetap V99");
        ImGui::Checkbox("FOV", &csgo::Get().Config.Visuals.Local.FOV);
        ImGui::Slider("Scale FOV", &csgo::Get().Config.Visuals.Local.ScaleFOV, 0, 999);
    }
    ImGui::EndChild();
}
ImGui::End();
example without a system config for a quick test:
C++:
ImGui::Begin("Test");
{
    ImGui::BeginChild("", &IsPressInsert, ...);
    {
        // Vars
        static const char* type_y[] = { "None", "Backwards", "..."};

        bool AAEnable = false;

        bool LocalFov = false;
        int ScaleFov = 90;

        int Yaw = 0;
        
        // Elements
        ImGui::CheckBox("AA Enable", &AAEnable);
        ImGui::ComboBox("Yaw", &Yaw, type_y, ARRAYSIZE(type_y));
        ImGui::Text("Welcome to Onetap V99");
        ImGui::Checkbox("FOV", &LocalFov);
        ImGui::Slider("Scale FOV", &ScaleFov, 0, 999);
    }
    ImGui::EndChild();
}
ImGui::End();
1606528638967.png
 
Сверху Снизу