Update gui.h

add private ips are operator option as well as option for generic bot names
This commit is contained in:
Jagger Tavarez
2024-03-21 20:38:54 -04:00
committed by GitHub
parent 9fb3a62db0
commit ce35b48390

View File

@@ -345,6 +345,10 @@ static inline void StaticUI()
ImGui::Checkbox("Infinite Ammo", &Globals::bInfiniteAmmo);
ImGui::Checkbox("Infinite Materials", &Globals::bInfiniteMaterials);
ImGui::Checkbox("Use generic random bot names", &Globals::bUseGenericRandomBotNames);
ImGui::Checkbox("Private IP's are operator", &Globals::bPrivateIPsAreOperator);
ImGui::Checkbox("No MCP (Don't change unless you know what this is)", &Globals::bNoMCP);
if (Addresses::ApplyGadgetData && Addresses::RemoveGadgetData && Engine_Version < 424)
@@ -1680,4 +1684,4 @@ static inline LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM
return 0;
}
return ::DefWindowProc(hWnd, msg, wParam, lParam);
}
}