mirror of
https://github.com/Michatec/wk_wars2x.git
synced 2026-04-01 08:26:27 +02:00
Fixed fxmanifest.lua not working on linux servers
This commit is contained in:
@@ -5,31 +5,38 @@
|
|||||||
|
|
||||||
-----------------------------------------------------------------------]]--
|
-----------------------------------------------------------------------]]--
|
||||||
|
|
||||||
fx_version 'adamant'
|
-- Define the FX Server version and game type
|
||||||
game 'gta5'
|
fx_version "adamant"
|
||||||
|
game "gta5"
|
||||||
|
|
||||||
name 'Wraith ARS 2X'
|
-- Define the resource metadata
|
||||||
description 'Police radar and plate reader system for FiveM'
|
name "Wraith ARS 2X"
|
||||||
author 'WolfKnight'
|
description "Police radar and plate reader system for FiveM"
|
||||||
version 'beta4'
|
author "WolfKnight"
|
||||||
|
version "beta4"
|
||||||
|
|
||||||
|
-- Include the files
|
||||||
files {
|
files {
|
||||||
"nui/radar.html",
|
"nui/radar.html",
|
||||||
"nui/radar.css",
|
"nui/radar.css",
|
||||||
"nui/jquery-3.4.1.min.js",
|
"nui/jquery-3.4.1.min.js",
|
||||||
"nui/radar.js",
|
"nui/radar.js",
|
||||||
"nui/images/*",
|
"nui/images/*.png",
|
||||||
"nui/images/plates/*",
|
"nui/images/plates/*.png",
|
||||||
"nui/fonts/*",
|
"nui/fonts/*.ttf",
|
||||||
"nui/sounds/*"
|
"nui/fonts/Segment7Standard.otf",
|
||||||
|
"nui/sounds/*.ogg"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Set the NUI page
|
||||||
ui_page "nui/radar.html"
|
ui_page "nui/radar.html"
|
||||||
|
|
||||||
server_script 'sv_version_check.lua'
|
-- Run the server scripts
|
||||||
server_script 'sv_saving.lua'
|
server_script "sv_version_check.lua"
|
||||||
|
server_script "sv_saving.lua"
|
||||||
|
|
||||||
client_script 'config.lua'
|
-- Run the client scripts
|
||||||
client_script 'cl_utils.lua'
|
client_script "config.lua"
|
||||||
client_script 'cl_radar.lua'
|
client_script "cl_utils.lua"
|
||||||
client_script 'cl_plate_reader.lua'
|
client_script "cl_radar.lua"
|
||||||
|
client_script "cl_plate_reader.lua"
|
||||||
Reference in New Issue
Block a user