Applying requested updates from Christina
This commit is contained in:
parent
171aec503c
commit
88c9c49a9e
Binary file not shown.
Binary file not shown.
|
|
@ -3,7 +3,7 @@
|
||||||
"name": "CSTM-RESOURCE-GENERATOR",
|
"name": "CSTM-RESOURCE-GENERATOR",
|
||||||
"displayName": "CSTM Five Alive Resource Generator",
|
"displayName": "CSTM Five Alive Resource Generator",
|
||||||
"description": "This is an internal tool to help you in creating a new basic lua resource for FiveAlive",
|
"description": "This is an internal tool to help you in creating a new basic lua resource for FiveAlive",
|
||||||
"version": "0.5.0",
|
"version": "0.6.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.59.0"
|
"vscode": "^1.59.0"
|
||||||
},
|
},
|
||||||
|
|
@ -15,10 +15,10 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Custommuscle2/GTAVAlive"
|
"url": "https://git.cstmgames.dev/cstmgames/CSTM-RESOURCE-GENERATOR"
|
||||||
},
|
},
|
||||||
"icon": "preview/fivem.png",
|
"icon": "preview/fivem.png",
|
||||||
"homepage": "https://github.com/Custommuscle2/GTAVAlive",
|
"homepage": "https://git.cstmgames.dev/cstmgames",
|
||||||
"license": "GPLv3",
|
"license": "GPLv3",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"fivem",
|
"fivem",
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -1,19 +1,19 @@
|
||||||
fx_version 'adamant'
|
fx_version 'adamant'
|
||||||
game 'gta5'
|
game 'gta5'
|
||||||
name "${resourceName}"
|
name '${resourceName}'
|
||||||
description "${description}"
|
description '${description}'
|
||||||
author "CSTMChristina & KJ4LXC"
|
author 'CSTMChristina & KJ4LXC'
|
||||||
version "0.0.1"
|
version '0.0.1'
|
||||||
|
|
||||||
resource_code "${resourceCode}"
|
resource_code '${resourceCode}'
|
||||||
log_level '4'
|
log_level '4'
|
||||||
bucket_prefix '9'
|
bucket_prefix '9'
|
||||||
SPLASH_IMG 'https://images.cstm.games/imgstor/splashscreens/defaultsplash.png'
|
SPLASH_IMG 'https://images.cstm.games/imgstor/splashscreens/defaultsplash.png'
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
"SLF",
|
'SLF',
|
||||||
"SCF"
|
'SCF'
|
||||||
}
|
}
|
||||||
|
|
||||||
files {
|
files {
|
||||||
|
|
@ -26,19 +26,17 @@ files {
|
||||||
'client/html/reset.css'
|
'client/html/reset.css'
|
||||||
}
|
}
|
||||||
|
|
||||||
ui_page "client/html/loadsplash.html"
|
ui_page 'client/html/loadsplash.html'
|
||||||
|
|
||||||
-- shared_scripts {
|
-- shared_scripts {
|
||||||
-- 'shared/*.lua'
|
-- 'shared/*.lua'
|
||||||
-- }
|
-- }
|
||||||
|
|
||||||
client_scripts {
|
client_scripts {
|
||||||
'@MODELS/*.lua',
|
|
||||||
'client/*.lua',
|
'client/*.lua',
|
||||||
'menus/*.lua'
|
'menus/*.lua'
|
||||||
}
|
}
|
||||||
|
|
||||||
server_scripts {
|
server_scripts {
|
||||||
'@MODELS/*.lua',
|
|
||||||
'server/*.lua'
|
'server/*.lua'
|
||||||
}
|
}
|
||||||
Reference in New Issue