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 +}