47 lines
770 B
Lua
47 lines
770 B
Lua
fx_version 'adamant'
|
|
game 'gta5'
|
|
name '${resourceName}'
|
|
description '${description}'
|
|
author 'CSTMChristina & KJ4LXC'
|
|
version '0.0.1'
|
|
--this is a working script
|
|
resource_code '${resourceCode}'
|
|
log_level '4'
|
|
bucket_prefix '9'
|
|
SPLASH_IMG 'https://images.cstm.games/imgstor/splashscreens/defaultsplash.png'
|
|
|
|
|
|
dependencies {
|
|
'SLF',
|
|
'SCF',
|
|
'SDB',
|
|
'SPH'
|
|
}
|
|
|
|
files {
|
|
'client/html/index.html',
|
|
'client/html/sounds/*.ogg',
|
|
'client/config/*.json',
|
|
'client/html/loadsplash.html',
|
|
'client/html/loadsplash.js',
|
|
'client/html/loadsplash.css',
|
|
'client/html/reset.css'
|
|
}
|
|
|
|
ui_page 'client/html/loadsplash.html'
|
|
|
|
-- shared_scripts {
|
|
-- 'shared/*.lua'
|
|
-- }
|
|
|
|
client_scripts {
|
|
'@menuv/menuv.lua',
|
|
'menus/*.lua',
|
|
'client/*.lua'
|
|
}
|
|
|
|
server_scripts {
|
|
'server/*.lua'
|
|
}
|
|
|