23 lines
		
	
	
	
		
			606 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			606 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- fxmanifest.lua
 | 
						|
 | 
						|
fx_version 'cerulean'
 | 
						|
game 'gta5'
 | 
						|
 | 
						|
author 'Marc'
 | 
						|
description 'RS 7 Beast'
 | 
						|
version '1.0.0'
 | 
						|
 | 
						|
files {
 | 
						|
    'data/vehicles.meta',
 | 
						|
    'data/carvariations.meta',
 | 
						|
    'data/handling.meta',
 | 
						|
}
 | 
						|
 | 
						|
data_file 'HANDLING_FILE'        'data/handling.meta'
 | 
						|
data_file 'VEHICLE_METADATA_FILE' 'data/vehicles.meta'
 | 
						|
data_file 'CARCOLS_FILE'         'data/carcols.meta'
 | 
						|
data_file 'VEHICLE_VARIATION_FILE' 'data/carvariations.meta'
 | 
						|
 | 
						|
-- Stream für Modelle & Texturen
 | 
						|
-- Modelle liegen im stream-Ordner (z.B. .yft, .ytd, .hi.yft)
 | 
						|
-- Der stream-Ordner muss nicht extra deklariert werden, wird automatisch erkannt
 |