forked from overextended/ox_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
53 lines (46 loc) · 983 Bytes
/
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
--[[ FX Information ]]--
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
--[[ Resource Information ]]--
name 'ox_core'
version '0.17.0'
description 'What have I done?'
license 'MIT'
author 'overextended'
repository 'https://github.com/overextended/ox_core'
--[[ Manifest ]]--
dependencies {
'/server:6620',
'/onesync',
}
shared_scripts {
'@ox_lib/init.lua',
'shared/init.lua',
}
client_scripts {
'client/init.lua',
'client/events.lua',
'client/player.lua',
'client/spawn.lua',
'client/debug.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/init.lua',
}
ui_page 'web/build/index.html'
files {
'web/build/index.html',
'web/build/**/*',
'imports/client.lua',
'imports/client/**.lua',
'client/death.lua',
'client/status.lua',
'client/utils.lua',
'shared/class.lua',
'shared/vehicles.lua',
'shared/files/*.json',
'locales/*.json',
}