From 8f0d946a3b369debe8c9a68263ff1df888c0278d Mon Sep 17 00:00:00 2001 From: Matthew <22198949+MafewTM@users.noreply.github.com> Date: Thu, 16 Nov 2023 04:15:12 -0500 Subject: [PATCH] fix: manifest update * fix: manigest update * fix: missing letter * fix: organize --- fxmanifest.lua | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/fxmanifest.lua b/fxmanifest.lua index 43ab50f..15d4956 100644 --- a/fxmanifest.lua +++ b/fxmanifest.lua @@ -1,28 +1,26 @@ fx_version 'cerulean' -use_experimental_fxv2_oal 'yes' -lua54 'yes' game 'gta5' -name 'qbx_hud' -author 'Qbus & Qbox Contributors' -version '1.0.0' -repository 'https://github.com/Qbox-project/qbx_hud' + description 'HUD for Qbox' +repository 'https://github.com/Qbox-project/qbx_hud' +version '1.0.0' + shared_scripts { + '@ox_lib/init.lua', '@qbx_core/shared/locale.lua', 'locales/en.lua', 'locales/*.lua', 'config.lua', - '@ox_lib/init.lua', - '@qbx_core/import.lua', + } -modules { - 'qbx_core:playerdata', +client_scripts { + '@qbx_core/modules/playerdata.lua', + 'client.lua', } server_script 'server.lua' -client_script 'client.lua' ui_page 'html/index.html' @@ -33,3 +31,6 @@ files { 'html/responsive.css', 'html/app.js', } + +lua54 'yes' +use_experimental_fxv2_oal 'yes' \ No newline at end of file