-
Автор темы
- #1
Hello everyone today im gonna teach you guys how to make your tabs at the buttom of your menu;)
First you go to your client.cpp.
Copy the code in your tabs.
Then replace this with everything and add the code from your tabs again!
Код:
if (ImGui :: Begin (CHEAT_NAME, & bIsGuiVisible, ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize))
{
static int tabSelected = 0;
if (Settings :: Aimbot :: weapon_aim_settings [iWeaponID] .aim_FovType> 1)
Settings :: Aimbot :: weapon_aim_settings [iWeaponID] .aim_FovType = 1;
if (Settings :: Aimbot :: weapon_aim_settings [iWeaponID] .aim_BestHit> 1)
Settings :: Aimbot :: weapon_aim_settings [iWeaponID] .aim_BestHit = 1;
if (Settings :: Aimbot :: weapon_aim_settings [iWeaponID] .aim_Spot> 5)
Settings :: Aimbot :: weapon_aim_settings [iWeaponID] .aim_Spot = 5;
// your tabs // aim // visuals // etc
// after the last tab do this
const char * tabNames [] = {
AIMBOT_TEXT, TRIGGER_TEXT, VISUAL_TEXT, RADAR_TEXT,
KNIFEBOT_TEXT, MISC_TEXT, COLORS_TEXT, CONFIG_TEXT
};};
static int tabOrder [] = {0, 1, 2, 3, 4, 5, 6, 7};
const bool tabChanged = ImGui :: TabLabels (tabNames, sizeof (tabNames) / sizeof (tabNames [0]), tabSelected, tabOrder);
ImGui :: End ();
}
Пожалуйста, авторизуйтесь для просмотра ссылки.