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", "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

View File

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