mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-07-15 15:07:51 +08:00
Added Always Full Ammo. (#1616)
This commit is contained in:
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user