feat(TabTuneables): Added sell car for 25mill

This commit is contained in:
Yimura 2020-12-28 01:24:03 +01:00
parent d4857729f1
commit e774cf56b9

View File

@ -11,6 +11,11 @@ namespace big
if (ImGui::Checkbox("No Idle Kick", g_settings.options["no_idle_kick"].get<bool*>()))
g_settings.save();
if (ImGui::Button("Set Car Sell Value at $25.000.000"))
{
*script_global(99007).at(970).as<int*>() = (int)25e6;
}
ImGui::EndTabItem();
}
}