forked from VORPCORE/vorp_inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
52 lines (42 loc) · 1.13 KB
/
fxmanifest.lua
File metadata and controls
52 lines (42 loc) · 1.13 KB
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
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'
repository 'https://github.com/VORPCORE/vorp_inventory-lua'
description 'Inventory System for RedM VORPCore framework'
lua54 'yes'
shared_scripts {
"config/config.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/client.lua',
'client/models/*.lua',
'client/services/*.lua',
'client/controllers/*.lua',
'@vorp_core/client/dataview.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/server.lua',
'server/models/*.lua',
'server/services/*.lua',
'server/controllers/*.lua',
'vorpInventoryApi.lua',
'server/respawn.lua',
}
files { 'html/**/*' }
ui_page 'html/ui.html'
server_exports { 'vorp_inventoryApi' }
-- version
version '3.5'
vorp_checker 'yes'
vorp_name '^4Resource version Check^3'
vorp_github 'https://github.com/VORPCORE/vorp_inventory-lua'