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",
|
||||
"displayName": "CSTM Five Alive Resource Generator",
|
||||
"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": {
|
||||
"vscode": "^1.59.0"
|
||||
},
|
||||
|
|
@ -15,10 +15,10 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Custommuscle2/GTAVAlive"
|
||||
"url": "https://git.cstmgames.dev/cstmgames/CSTM-RESOURCE-GENERATOR"
|
||||
},
|
||||
"icon": "preview/fivem.png",
|
||||
"homepage": "https://github.com/Custommuscle2/GTAVAlive",
|
||||
"homepage": "https://git.cstmgames.dev/cstmgames",
|
||||
"license": "GPLv3",
|
||||
"keywords": [
|
||||
"fivem",
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 468 KiB |
|
|
@ -1,19 +1,19 @@
|
|||
fx_version 'adamant'
|
||||
game 'gta5'
|
||||
name "${resourceName}"
|
||||
description "${description}"
|
||||
author "CSTMChristina & KJ4LXC"
|
||||
version "0.0.1"
|
||||
name '${resourceName}'
|
||||
description '${description}'
|
||||
author 'CSTMChristina & KJ4LXC'
|
||||
version '0.0.1'
|
||||
|
||||
resource_code "${resourceCode}"
|
||||
resource_code '${resourceCode}'
|
||||
log_level '4'
|
||||
bucket_prefix '9'
|
||||
SPLASH_IMG 'https://images.cstm.games/imgstor/splashscreens/defaultsplash.png'
|
||||
|
||||
|
||||
dependencies {
|
||||
"SLF",
|
||||
"SCF"
|
||||
'SLF',
|
||||
'SCF'
|
||||
}
|
||||
|
||||
files {
|
||||
|
|
@ -26,19 +26,17 @@ files {
|
|||
'client/html/reset.css'
|
||||
}
|
||||
|
||||
ui_page "client/html/loadsplash.html"
|
||||
ui_page 'client/html/loadsplash.html'
|
||||
|
||||
-- shared_scripts {
|
||||
-- 'shared/*.lua'
|
||||
-- }
|
||||
|
||||
client_scripts {
|
||||
'@MODELS/*.lua',
|
||||
'client/*.lua',
|
||||
'menus/*.lua'
|
||||
}
|
||||
|
||||
server_scripts {
|
||||
'@MODELS/*.lua',
|
||||
'server/*.lua'
|
||||
}
|
||||
Reference in New Issue