From 02966a41808213ebc7bc96d173e8dc8f85bd39af Mon Sep 17 00:00:00 2001 From: Yimura Date: Thu, 14 Jan 2021 21:58:29 +0100 Subject: [PATCH] refactor(TabOnline): Removed sell vehicle --- BigBaseV2/src/gui/tab_bar/tab_online.cpp | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/BigBaseV2/src/gui/tab_bar/tab_online.cpp b/BigBaseV2/src/gui/tab_bar/tab_online.cpp index a42aac80..6e1ec77b 100644 --- a/BigBaseV2/src/gui/tab_bar/tab_online.cpp +++ b/BigBaseV2/src/gui/tab_bar/tab_online.cpp @@ -46,25 +46,7 @@ namespace big if (ImGui::TreeNode("Money")) { - 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 25 million")) - { - features::functions::set_car_sell_value((int)25e6); - } - - if (ImGui::Button("Set Car Sell Value at INT_MAX (2.1 billion)")) - { - features::functions::set_car_sell_value(INT_MAX); - } - - if (ImGui::Button("Reset Vehicle Sell Stats")) - { - QUEUE_JOB_BEGIN_CLAUSE() - { - features::functions::reset_vehicle_sell_stats(); - }QUEUE_JOB_END_CLAUSE - } + ImGui::Text("Removed because is has been detected..."); ImGui::TreePop(); }