feat(enums) Added new license plates from 1.68 (#2665)

This commit is contained in:
Tessio 2024-01-28 12:00:16 -06:00 committed by GitHub
parent 1e11d83f7a
commit 7efbee2e85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 2 deletions

View File

@ -9,6 +9,13 @@ static const std::map<int, std::string> lsc_plate_styles = {
{PLATE_YELLOWONBLACK, "Yellow on Black"},
{PLATE_YELLOWONBLUE, "Yellow on Blue"},
{PLATE_YANKTON, "Yankton"},
{PLATE_ECOLA, "Ecola"},
{PLATE_LASVENTURAS, "Las Venturas"},
{PLATE_LIBERTYCITY, "Liberty City"},
{PLATE_LOSSANTOSCARMEET, "Los Santos Car Meet"},
{PLATE_LOSSANTOSPANIC, "Los Santos Panicc"},
{PLATE_LOSSANTOSPOUNDERS, "Los Santos Pounders"},
{PLATE_SPRUNK, "Sprunk"},
};
static const std::map<int, std::string> lsc_wheel_styles = {

View File

@ -663,7 +663,14 @@ enum PlateTextIndexs
PLATE_YELLOWONBLUE,
PLATE_BLUEONWHITE2,
PLATE_BLUEONWHITE3,
PLATE_YANKTON
PLATE_YANKTON,
PLATE_ECOLA,
PLATE_LASVENTURAS,
PLATE_LIBERTYCITY,
PLATE_LOSSANTOSCARMEET,
PLATE_LOSSANTOSPANIC,
PLATE_LOSSANTOSPOUNDERS,
PLATE_SPRUNK,
};
enum WindowTints//m8 do you even int tint?
@ -3655,4 +3662,4 @@ static bool GetVehicleInfoForClanLogo(Hash vehicleModel, rage::fvector3& x, rage
return true;
default: return false;
}
}
}