-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfxmanifest.lua
56 lines (48 loc) · 1.19 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
--[[ FX Information ]]--
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
--[[ Resource Information ]]--
name 'ox_vehicledealer'
version '0.7.2'
description 'Vehicle Dealer'
license 'GPL-3.0-or-later'
author 'overextended'
repository 'https://github.com/overextended/ox_vehicledealer'
--[[ Manifest ]]--
dependencies {
'/server:5104',
'/onesync',
}
shared_scripts {
'@ox_lib/init.lua',
'shared.lua',
}
client_scripts {
'@ox_core/imports/client.lua',
'client/main.lua',
'client/import.lua',
'client/showroom.lua',
'client/vehicleYard.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'@ox_core/imports/server.lua',
'server/main.lua',
'server/import.lua',
'server/showroom.lua',
'server/vehicleYard.lua',
}
ui_page 'web/build/index.html'
files {
'web/build/index.html',
'web/build/**/*',
'locales/*.json',
'data/**',
}
ox_property_data '/data/devin_weston_aircraft.lua'
ox_property_data '/data/mosley_auto_service.lua'
ox_property_data '/data/premium_deluxe_motorsport.lua'
ox_property_data '/data/puerto_del_sol_pegasus.lua'
ox_property_data '/data/terminal.lua'