feat: Unlock Interaction Menu, Weapon Explosion Radius Modifier & improve fast respawn(#2489)

This commit is contained in:
thehorizon84
2023-12-08 14:13:06 +01:00
committed by GitHub
parent bb5dfd1484
commit 6d64bcd1d7
7 changed files with 78 additions and 13 deletions

View File

@ -69,6 +69,7 @@ namespace big
components::command_checkbox<"noragdoll">();
components::command_checkbox<"fastrun">();
components::command_checkbox<"noidlekick">();
components::command_checkbox<"interactionmenufreedom">();
components::command_checkbox<"walkunder">();
if (!g.self.super_jump)
components::command_checkbox<"beastjump">();

View File

@ -121,6 +121,9 @@ namespace big
components::command_checkbox<"incrdamage">();
ImGui::InputFloat("VIEW_WEAPON_DAMAGE"_T.data(), &g.weapons.increased_damage, .1, 10, "%.1f");
components::command_checkbox<"modifyexplosionradius">();
ImGui::InputFloat("VIEW_WEAPON_EXPLOSION_RADIUS"_T.data(), &g.weapons.set_explosion_radius, .1, 200, "%.1f");
ImGui::SeparatorText("CUSTOM_WEAPONS"_T.data());
ImGui::Checkbox("VIEW_WEAPON_CUSTOM_GUN_ONLY_FIRES_WHEN_THE_WEAPON_IS_OUT"_T.data(), &g.self.custom_weapon_stop);