Added Always Full Ammo. (#1616)

This commit is contained in:
gir489
2023-07-05 17:29:07 -04:00
committed by GitHub
parent 11cd9ab004
commit feeaa2ddbd
7 changed files with 256 additions and 223 deletions

View File

@ -47,6 +47,9 @@ namespace big
if (g.window.ingame_overlay_indicators.show_infinite_ammo)
components::overlay_indicator("Infinite Ammo", g.weapons.infinite_ammo);
if (g.window.ingame_overlay_indicators.show_always_full_ammo)
components::overlay_indicator("Always Full Ammo", g.weapons.always_full_ammo);
if (g.window.ingame_overlay_indicators.show_infinite_mag)
components::overlay_indicator("Infinite Magazine", g.weapons.infinite_mag);

View File

@ -17,6 +17,7 @@ namespace big
ImGui::BeginGroup();
components::command_checkbox<"infammo">();
components::command_checkbox<"alwaysfullammo">();
components::command_checkbox<"infclip">();
components::command_checkbox<"infrange">();
ImGui::Checkbox("Allow Weapons In Interiors", &g.weapons.interior_weapon);

View File

@ -72,6 +72,7 @@ namespace big
ImGui::SameLine();
ImGui::BeginGroup();
ImGui::Checkbox("Show Infinite Ammo", &g.window.ingame_overlay_indicators.show_infinite_ammo);
ImGui::Checkbox("Show Always Full Ammo", &g.window.ingame_overlay_indicators.show_always_full_ammo);
ImGui::Checkbox("Show Infinite Magazine", &g.window.ingame_overlay_indicators.show_infinite_mag);
ImGui::Checkbox("Show Aimbot", &g.window.ingame_overlay_indicators.show_aimbot);
ImGui::Checkbox("Show Triggerbot", &g.window.ingame_overlay_indicators.show_triggerbot);