Applying requested updates from Christina

This commit is contained in:
Chase Eller 2026-03-18 10:52:39 -04:00
parent 171aec503c
commit 88c9c49a9e
No known key found for this signature in database
GPG Key ID: 9233D42F495E657C
5 changed files with 11 additions and 13 deletions

Binary file not shown.

Binary file not shown.

View File

@ -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

View File

@ -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'
}