-
Notifications
You must be signed in to change notification settings - Fork 110
/
fxmanifest.lua
57 lines (44 loc) · 1.43 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'
game "gta5"
author "Xirvin#0985 and Project Sloth"
version '2.0.7'
repository 'Project-Sloth/ps-housing'
lua54 'yes'
ui_page 'html/index.html'
dependency {
'fivem-freecam',
}
shared_script {
'@ox_lib/init.lua',
"shared/config.lua",
"shared/framework.lua",
}
client_script {
'client/shell.lua',
'client/apartment.lua',
'client/cl_property.lua',
'client/client.lua',
'client/modeler.lua',
'client/migrate.lua'
}
server_script {
'@oxmysql/lib/MySQL.lua',
"server/sv_property.lua",
"server/server.lua",
"server/migrate.lua",
}
files {
'html/**',
'stream/starter_shells_k4mb1.ytyp',
'stream/**.ytyp'
}
-- Fix for "stuck in black loading screen"
data_file 'DLC_ITYP_REQUEST' 'x64c:/levels/gta5/interiors/int_props/int_corporate.rpf/int_corporate.ytyp'
data_file 'DLC_ITYP_REQUEST' 'x64c:/levels/gta5/interiors/int_props/int_industrial.rpf/int_industrial.ytyp'
data_file 'DLC_ITYP_REQUEST' 'x64c:/levels/gta5/interiors/int_props/int_lev_des.rpf/int_lev_des.ytyp'
data_file 'DLC_ITYP_REQUEST' 'x64c:/levels/gta5/interiors/int_props/int_residential.rpf/int_residential.ytyp'
data_file 'DLC_ITYP_REQUEST' 'x64c:/levels/gta5/interiors/int_props/int_retail.rpf/int_retail.ytyp'
data_file 'DLC_ITYP_REQUEST' 'x64c:/levels/gta5/interiors/int_props/int_services.rpf/int_services.ytyp'
data_file 'DLC_ITYP_REQUEST' 'starter_shells_k4mb1.ytyp'
data_file 'DLC_ITYP_REQUEST' 'stream/**.ytyp'
this_is_a_map 'yes'