55 lines
1.0 KiB
Lua
55 lines
1.0 KiB
Lua
-- Resource Information
|
|
-- Ensure the fx_version is set to 'bodacious' for compatibility with FiveM
|
|
fx_version 'bodacious'
|
|
game 'gta5'
|
|
|
|
name 'Tommy\'s Radio'
|
|
description 'Realistic Radio for FiveM'
|
|
author 'Tommy Johnston (TIMMYG Studios)'
|
|
version 'v4.3'
|
|
|
|
-- Lua Version
|
|
lua54 'yes'
|
|
node_version '22'
|
|
|
|
-- UI Configuration
|
|
ui_page 'client/index.html'
|
|
|
|
-- Files
|
|
files {
|
|
'client/dist/bundle.js',
|
|
'client/dist/imbe_vocoder.wasm',
|
|
'client/radios/**/*.*',
|
|
'client/index.html',
|
|
'client/screen.html',
|
|
'stream/**'
|
|
}
|
|
|
|
-- Scripts
|
|
shared_scripts {
|
|
'config.lua',
|
|
'animations.lua',
|
|
'client/audio.lua',
|
|
'shared.lua',
|
|
'client/blips.lua',
|
|
'client/positions.lua',
|
|
'client/screen.lua',
|
|
}
|
|
|
|
server_scripts {
|
|
'server/dist/bundle.js',
|
|
'server/dispatch.lua',
|
|
}
|
|
|
|
-- Escrow Configuration
|
|
escrow_ignore {
|
|
'config.lua',
|
|
'animations.lua',
|
|
'client/positions.lua',
|
|
'client/screen.lua',
|
|
'client/radios/**/*.*'
|
|
}
|
|
|
|
data_file 'DLC_ITYP_REQUEST' 'stream/afx1500.ytyp'
|
|
|
|
dependency '/assetpacks' |