-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
42 lines (35 loc) · 881 Bytes
/
fxmanifest.lua
File metadata and controls
42 lines (35 loc) · 881 Bytes
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
fx_version 'cerulean'
game 'gta5'
name 'qbx_properties'
description 'Hopefully one day a feature rich property system'
repository 'https://github.com/Qbox-project/qbx_properties'
version '0.0.1'
ox_lib 'locale'
shared_scripts {
'@ox_lib/init.lua',
'@qbx_core/modules/lib.lua',
'shared/main.lua',
}
client_scripts {
'@qbx_core/modules/playerdata.lua',
'client/apartmentselect.lua',
'client/property.lua',
'client/realtor.lua',
'client/dataview.lua',
'client/decorating.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/apartmentselect.lua',
'server/property.lua',
'server/realtor.lua',
--'server/decorating.js' only used for taking screenshots of furniture
}
files {
'config/client.lua',
'config/shared.lua',
'locales/*.json',
'screenshots/*.webp'
}
lua54 'yes'
use_experimental_fxv2_oal 'true'