44 lines
740 B
Lua
44 lines
740 B
Lua
fx_version 'adamant'
|
|
game 'gta5'
|
|
name "${resourceName}"
|
|
description "${description}"
|
|
author "CSTMChristina & KJ4LXC"
|
|
version "0.0.1"
|
|
|
|
resource_code "${resourceCode}"
|
|
log_level '4'
|
|
bucket_prefix '9'
|
|
SPLASH_IMG 'https://images.cstm.games/imgstor/splashscreens/defaultsplash.png'
|
|
|
|
|
|
dependencies {
|
|
"SLF",
|
|
"SCF"
|
|
}
|
|
|
|
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 {
|
|
'@MODELS/*.lua',
|
|
'client/*.lua',
|
|
'menus/*.lua'
|
|
}
|
|
|
|
server_scripts {
|
|
'@MODELS/*.lua',
|
|
'server/*.lua'
|
|
} |