Converting a car pack

So i have a reskinned car pack that is ELS and it has a required vehicles.meta so do i just change the name of the file… or what do i do?

for some reason the FLAGS are not read thru server when its streaming the meta but if you install it client sided it works but then all your officers need it client sided which is useless in my opinion

If you have the files u can use this in __resource.lua

resource_manifest_version ‘77731fab-63ca-442c-a67b-abc70f28dfa5’

files {
‘vehicles.meta’,
‘carvariations.meta’,
‘carcols.meta’,
‘handling.meta’,
‘dlctext.meta’
}

data_file ‘HANDLING_FILE’ ‘handling.meta’
data_file ‘VEHICLE_METADATA_FILE’ ‘vehicles.meta’
data_file ‘CARCOLS_FILE’ ‘carcols.meta’
data_file ‘VEHICLE_VARIATION_FILE’ ‘carvariations.meta’
data_file ‘DLCTEXT_FILE’ ‘dlctext.meta’

client_script ‘vehicle_names.lua’

That will stream the .meta files, and if you only need to stream the vehicles.meta, you can take out the others in this code. Just be warned, most, if not all vehicles.meta in car packs NOT made for FiveM have every vehicle in the game in the file. You’d need to take the line of code that’s relevant to the cars in the pack itself to prevent conflicts with other vehicles you have modded in the server (it’s the same process if you have a modded vehicles.meta in singleplayer before replacing it with another modded one).