feat(TabTuneables): Added sell car for 25mill

This commit is contained in:
Yimura 2020-12-28 01:24:03 +01:00
parent 63c85a9796
commit c48647c64e
No known key found for this signature in database
GPG Key ID: 54EFAD29393A6E78

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