From ce35b48390344a3a8329f3f3a1376a2f124ebd2f Mon Sep 17 00:00:00 2001 From: Jagger Tavarez <55355558+Jagger24x24@users.noreply.github.com> Date: Thu, 21 Mar 2024 20:38:54 -0400 Subject: [PATCH] Update gui.h add private ips are operator option as well as option for generic bot names --- Project Reboot 3.0/gui.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Project Reboot 3.0/gui.h b/Project Reboot 3.0/gui.h index 5927128..d9673c3 100644 --- a/Project Reboot 3.0/gui.h +++ b/Project Reboot 3.0/gui.h @@ -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); -} \ No newline at end of file +}