-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathfxmanifest.lua
57 lines (49 loc) · 1.29 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'
lua54 'yes'
game 'gta5'
name 'bnl-housing'
author 'Boris'
version '0.0.1'
repository 'https://github.com/borisnliscool/bnl-housing'
description 'A player property system for FiveM'
dependencies {
'/onesync',
'ox_lib',
'oxmysql',
}
ui_page 'src/web/build/index.html'
files {
'src/bridge/**/client.lua',
'data/**/*.lua',
'locales/*.json',
'src/web/build/index.html',
'src/web/build/**/*',
'stream/*.ytyp'
}
data_file 'DLC_ITYP_REQUEST' 'shellprops.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv10.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv2.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv3.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv4.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv5.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv7.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv8.ytyp'
data_file 'DLC_ITYP_REQUEST' 'shellpropsv9.ytyp'
client_scripts {
'src/client/**/*.lua',
'src/specialprops/**/client.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'src/server/classes/*.lua',
'src/server/*.lua',
'src/server/callbacks/*.lua',
'src/specialprops/**/server.lua',
}
shared_scripts {
'@ox_lib/init.lua',
'config.lua',
'src/bridge/shared.lua',
'src/shared/*.lua',
'src/specialprops/**/shared.lua',
}