-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathfxmanifest.lua
77 lines (70 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
-- FX Information
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
-- Resource Information
name 'mi_utils'
author 'MI_Agimir'
version '1.0.1'
repository 'https://github.com/MesaIndigo/mi_utils'
description 'For support with streaming assets pertaining to M.I. Resources'
-- dependencies
dependencies {
'ox_inventory',
'ox_target'
}
-- shared
shared_scripts {
'@ox_lib/init.lua',
'shared/items.lua',
'shared/config.lua',
}
-- client
client_scripts {
'@ox_core/imports/client.lua',
'client/aspects/*.lua',
'client/main.lua'
}
-- server
server_scripts {
'@oxmysql/lib/MySQL.lua',
'@ox_core/imports/server.lua',
'server/events.lua',
'server/main.lua'
}
-- stream stuff
files {
-- props
'stream/**/**/*.ytyp',
'stream/**/**/*.ymf',
'stream/**/**/*.ydr',
-- vehicles
'stream/**/**/*.ytd',
'stream/**/**/*.yft',
'stream/**/**/vehicles.meta',
'stream/**/**/carvariations.meta',
'stream/**/**/carcols.meta',
'stream/**/**/handling.meta',
'stream/**/**/vehiclelayouts.meta',
'stream/**/**/dlctext.meta',
'stream/**/**/contentunlocks.meta',
}
-- vehicles
data_file 'HANDLING_FILE' 'stream/**/**/handling.meta'
data_file 'VEHICLE_METADATA_FILE' 'stream/**/**/vehicles.meta'
data_file 'VEHICLE_METADATA_FILE' 'stream/**/**/vehiclelayouts.meta'
data_file 'CARCOLS_FILE' 'stream/**/**/carcols.meta'
data_file 'VEHICLE_VARIATION_FILE' 'stream/**/**/carvariations.meta'
data_file 'VEHICLE_LAYOUTS_FILE' 'stream/**/**/dlctext.meta'
data_file 'VEHICLE_METADATA_FILE' 'stream/**/**/contentunlocks.meta'
data_file 'AMBIENT_PED_MODEL_SET_FILE' 'stream/**/**/ambientpedmodelsets.meta'
-- props
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/badges.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/bzzz_effect_cigarpack.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/bzzz_food_dessert_a.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/bzzz_food_icecream_pack.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/bzzz_food_xmas22.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/bzzz_foodpack.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/dingus.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**/**/knjgh_pizzas.ytyp'