From c48647c64e01ea1239129e088d2ee8dfe3082ffd Mon Sep 17 00:00:00 2001 From: Yimura Date: Mon, 28 Dec 2020 01:24:03 +0100 Subject: [PATCH] feat(TabTuneables): Added sell car for 25mill --- BigBaseV2/src/gui/tab_bar/tab_tunables.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BigBaseV2/src/gui/tab_bar/tab_tunables.cpp b/BigBaseV2/src/gui/tab_bar/tab_tunables.cpp index b4f17a1c..c823a5ef 100644 --- a/BigBaseV2/src/gui/tab_bar/tab_tunables.cpp +++ b/BigBaseV2/src/gui/tab_bar/tab_tunables.cpp @@ -11,6 +11,11 @@ namespace big if (ImGui::Checkbox("No Idle Kick", g_settings.options["no_idle_kick"].get())) g_settings.save(); + if (ImGui::Button("Set Car Sell Value at $25.000.000")) + { + *script_global(99007).at(970).as() = (int)25e6; + } + ImGui::EndTabItem(); } }