refactor(Online): Re-added money options (safe values only)

This commit is contained in:
Yimura 2021-02-02 16:21:56 +01:00
parent 83bc59f5b1
commit 07ad0b1294
No known key found for this signature in database
GPG Key ID: 54EFAD29393A6E78

View File

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