Addon Vehicles & Names

Many addon vehicles contain names within their meta file that are not the same ones we use to spawn them, in this guide you will see how to find said name.

We added this section because many users use Addon vehicles, which are personalized vehicles with brands external to FiveM.

I can't get the name to show up in the garage.

We can use Config.Debug to see the name of the vehicle in our client console when entering a garage and selecting it. We recommend that you get a trusted developer to properly handle these parameters.


How to find the vehicle name?

We can use Config.Debug to see the name of the vehicle in our client console when entering a garage and selecting it.

In this case, many of these vehicles appear with the name NULL within the garage menu, and this is completely normal, due to the meta structure with which the vehicle was created. Continue reading to understand how to resolve the case of a car with the name NULL.

The problem here is not in the garage, but in the vehicles.meta of your personalized car. The solution is simple, the garage asks for the name of the model, which you find in vehicles.meta as gameName.

In the following example, you have a car named golfgti7, but its creator put gameName: Golf GTI.

So in the config/vehicles we must put it this way:

Config.AddonVehiclesLabelList = {
     ['Golf GTI'] = 'Volkswagen Golf 8 GTI',
}

We attach a screenshot of what the vehicles.meta of this specific car looks like:

Last updated