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(); }