From 4b6736f8751474b9dc2b3e8b72f4256b97b3e79c Mon Sep 17 00:00:00 2001 From: Yimura Date: Tue, 2 Feb 2021 16:21:56 +0100 Subject: [PATCH] refactor(Online): Re-added money options (safe values only) --- BigBaseV2/src/gui/tab_bar/main/online.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/BigBaseV2/src/gui/tab_bar/main/online.cpp b/BigBaseV2/src/gui/tab_bar/main/online.cpp index 0f0b603a..50949042 100644 --- a/BigBaseV2/src/gui/tab_bar/main/online.cpp +++ b/BigBaseV2/src/gui/tab_bar/main/online.cpp @@ -43,7 +43,17 @@ namespace big if (ImGui::TreeNode("Money")) { - ImGui::Text("Removed because is has been detected..."); + ImGui::Text("Instructions:\n\nTake a vehicle from the street.\nGo in LSC and put a tracker on it.\nOpen the sell submenu but don't confirm it.\nOpen this menu and click one of the below buttons."); + + if (ImGui::Button("Set Car Sell Value at 5 million")) + { + features::functions::set_car_sell_value((int)5e6); + } + + if (ImGui::Button("Set Car Sell Value at 25 million")) + { + features::functions::set_car_sell_value((int)25e6); + } ImGui::TreePop(); }