86 lines
		
	
	
		
			No EOL
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			No EOL
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| ------------------------------
 | |
| 
 | |
| fx_version 'adamant'
 | |
| games { 'gta5' }
 | |
| 
 | |
| author 'TrevorBarns w/ credits see GitHub'
 | |
| description 'A siren / emergency lights controller for FiveM.'
 | |
| 
 | |
| version '3.2.9'			-- Readonly version of currently installed version.
 | |
| compatible '3.2.2'		-- Readonly save reverse compatiability.
 | |
| 
 | |
| ------------------------------
 | |
| 
 | |
| beta_checking 'true'	-- Notifications for beta revisions and new betas.
 | |
| experimental 'false'	-- Mute unstable version warning in server console.
 | |
| debug_mode 'false' 		-- More verbose printing on client console.
 | |
| 
 | |
| ------------------------------
 | |
| 
 | |
| ui_page('/UI/html/index.html')
 | |
| 	
 | |
| dependencies {
 | |
|     'RageUI'
 | |
| }
 | |
| 
 | |
| files({
 | |
|     'UI/html/index.html',
 | |
|     'UI/html/lvc.js',
 | |
|     'UI/html/style.css',
 | |
| 	'UI/sounds/*.ogg',
 | |
| 	'UI/sounds/**/*.ogg',
 | |
| 	'UI/textures/**/*.png',
 | |
| 	'UI/textures/**/*.gif',
 | |
| 	'PLUGINS/**/*.json'
 | |
| })
 | |
| 
 | |
| 
 | |
| shared_script {
 | |
| 	'/UTIL/semver.lua',
 | |
| 	'/UI/cl_locale.lua',
 | |
| 	'/UI/locale/en.lua',	-- Set locale / language file here.
 | |
| 	'SETTINGS.lua',
 | |
| }
 | |
| 
 | |
| client_scripts {
 | |
| 	---------------RAGE-UI---------------
 | |
|     '@RageUI/RMenu.lua',
 | |
|     '@RageUI/menu/RageUI.lua',
 | |
|     '@RageUI/menu/Menu.lua',
 | |
|     '@RageUI/menu/MenuController.lua',
 | |
|     '@RageUI/components/Audio.lua',
 | |
|     '@RageUI/components/Enum.lua',
 | |
|     '@RageUI/components/Keys.lua',
 | |
|     '@RageUI/components/Rectangle.lua',
 | |
|     '@RageUI/components/Sprite.lua',
 | |
|     '@RageUI/components/Text.lua',
 | |
|     '@RageUI/components/Visual.lua',
 | |
|     '@RageUI/menu/elements/ItemsBadge.lua',
 | |
|     '@RageUI/menu/elements/ItemsColour.lua',
 | |
|     '@RageUI/menu/elements/PanelColour.lua',
 | |
|     '@RageUI/menu/items/UIButton.lua',
 | |
|     '@RageUI/menu/items/UICheckBox.lua',
 | |
|     '@RageUI/menu/items/UIList.lua',
 | |
|     '@RageUI/menu/items/UISeparator.lua',
 | |
|     '@RageUI/menu/items/UISlider.lua',
 | |
|     '@RageUI/menu/items/UISliderHeritage.lua',
 | |
|     '@RageUI/menu/items/UISliderProgress.lua',
 | |
|     '@RageUI/menu/panels/UIColourPanel.lua',
 | |
|     '@RageUI/menu/panels/UIGridPanel.lua',
 | |
|     '@RageUI/menu/panels/UIPercentagePanel.lua',
 | |
|     '@RageUI/menu/panels/UIStatisticsPanel.lua',
 | |
|     '@RageUI/menu/windows/UIHeritage.lua',
 | |
| 	-------------------------------------
 | |
| 	'SIRENS.lua',
 | |
| 	'/UTIL/cl_*.lua',
 | |
| 	'/UI/cl_*.lua',
 | |
| 	'/PLUGINS/cl_plugins.lua',
 | |
| 	'/PLUGINS/**/SETTINGS.lua',
 | |
| 	'/PLUGINS/**/cl_*.lua',
 | |
| }
 | |
| 
 | |
| server_script {
 | |
| 	'/UTIL/sv_lvc.lua',
 | |
| 	'/PLUGINS/**/sv_*.lua'
 | |
| }
 | |
| ------------------------------ | 
