Car Customizations Saying NULL

Ive added in some Addon cars to my server, Majority have all the customizations showing in the mech script, but I have a dozen that the customization options say “NULL”. Ive tried everything from messing with Modkit IDs etc… Please help me…

image

You have to go into that cars carcols.meta

Look for these labels

carcols.meta

<modShopLabel>RETIN_LIV9</modShopLabel>

Make a file named vehicle_names.lua

vehicle_names.lua

function AddTextEntry(key, value)
	Citizen.InvokeNative(GetHashKey("ADD_TEXT_ENTRY"), key, value)
end

Citizen.CreateThread(function()
	AddTextEntry('RETIN_LIV9','West Bromwich Constabulary')
end)

This is what that file should look like after you’re done.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.