forked from VORPCORE/vorp_inventory-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
57 lines (46 loc) · 1.22 KB
/
fxmanifest.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
fx_version 'cerulean'
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
game 'rdr3'
author 'VORP'
name 'vorp inventory'
repository 'https://github.com/VORPCORE/vorp_inventory-lua'
description 'Inventory System for RedM VORPCore framework'
lua54 'yes'
shared_scripts {
"config/config.lua",
"config/groups.lua",
"config/weapons.lua",
"config/ammo.lua",
"config/logs.lua",
"languages/*.lua",
"shared/models/*.lua",
'shared/handler/*.lua',
"shared/services/*.lua",
"shared/services/Regex.js",
}
client_scripts {
'client/exports.lua',
'client/client.lua',
'client/models/*.lua',
'client/services/*.lua',
'client/controllers/*.lua',
'@vorp_core/client/dataview.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/vorpInventoryApi.lua',
'server/server.lua',
'server/models/*.lua',
'server/services/*.lua',
'server/controllers/*.lua',
'server/respawn.lua',
}
files { 'html/**/*' }
ui_page 'html/ui.html'
---@deprecated
server_exports { 'vorp_inventoryApi' }
-- version
version '3.8'
vorp_checker 'yes'
vorp_name '^4Resource version Check^3'
vorp_github 'https://github.com/VORPCORE/vorp_inventory-lua'