forked from overextended/ox_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
52 lines (45 loc) · 958 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
--[[ FX Information ]]--
fx_version 'cerulean'
use_experimental_fxv2_oal 'yes'
lua54 'yes'
game 'gta5'
--[[ Resource Information ]]--
name 'ox_core'
version '0.12.2'
description 'What have I done?'
license 'MIT'
author 'overextended'
repository 'https://github.com/overextended/ox_core'
--[[ Manifest ]]--
dependencies {
'/server:6103',
'/onesync',
}
shared_scripts {
'@ox_lib/init.lua',
'shared/**.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/functions.lua',
'server/init.lua',
'server/debug.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',
'shared/files/*.json',
'locales/*.json',
}