Cars, and their lights (their handling and to make lights be in proper places)

Hi, Im wondering where I would put my files for the vehicles if I need like a .meta or carnavas (however you spell it), like if the lights are off the vehicle, where would I put said file to make them go on the car, under resources-carmods-stream? Thanks!

Couldn’t put it in citizen-dlc- christmas 2 its gone.

Put the file in here: […]resource/carmods

And add the files to the “__resource.lua” like this

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

files {
‘stream/handling.meta’,
‘stream/vehicles.meta’,
‘stream/carcols.meta’,
‘stream/carvariations.meta’,
‘stream/vehiclelayouts.meta’,
}

data_file ‘HANDLING_FILE’ ‘stream/handling.meta’
data_file ‘VEHICLE_METADATA_FILE’ ‘stream/vehicles.meta’
data_file ‘CARCOLS_FILE’ ‘stream/carcols.meta’
data_file ‘VEHICLE_VARIATION_FILE’ ‘stream/carvariations.meta’
data_file ‘VEHICLE_LAYOUTS_FILE’ ‘stream/vehiclelayouts.meta’

Error pic

This happens now ^

Ops, my fault. place the files into […]/resource/carmods/stream

And delete the cache

Don’t put the files in stream! The files directive will already download them.

Shit, didn’t realized it :sweat:

resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5'

files {
'handling.meta',
'vehicles.meta',
'carcols.meta',
'carvariations.meta',
'vehiclelayouts.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 'VEHICLE_LAYOUTS_FILE' 'vehiclelayouts.meta'

Change the __resource.lua file to look like this and place the files into […]/resource/carmods