forked from nonamerpcz/es_extended
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
110 lines (85 loc) · 2.3 KB
/
fxmanifest.lua
File metadata and controls
110 lines (85 loc) · 2.3 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
-- Copyright (c) Jérémie N'gadi
--
-- All rights reserved.
--
-- Even if 'All rights reserved' is very clear :
--
-- You shall not use any piece of this software in a commercial product / service
-- You shall not resell this software
-- You shall not provide any facility to install this particular software in a commercial product / service
-- If you redistribute this software, you must link to ORIGINAL repository at https://github.com/ESX-Org/es_extended
-- This copyright should appear in every part of the project code
local esx_config = {
enable_loadscreen = true
}
fx_version 'adamant'
game 'gta5'
description 'ESX'
version '2.0.1'
ui_page 'hud/index.html'
ui_page_preload 'yes'
dependencies {
'spawnmanager',
'baseevents',
'mysql-async',
'async',
'cron',
'skinchanger'
}
files {
'data/**/*',
'hud/**/*',
'modules.json',
'modules/__core__/modules.json',
'modules/__core__/**/data/**/*',
'modules/__core__/**/*.lua',
'modules/**/data/**/*',
'modules/**/*.lua',
}
server_scripts {
'@async/async.lua',
'@mysql-async/lib/MySQL.lua',
'locale.lua',
'locales/*.lua',
'config/default/config.lua',
'config/default/config.weapons.lua',
'config/default/config.items.lua',
'config/default/modules/core/*.lua',
'config/default/modules/*.lua',
'config/modules/core/*.lua',
'config/modules/*.lua',
'boot/shared/module.lua',
'boot/server/module.lua',
'boot/shared/events.lua',
'boot/server/events.lua',
'boot/shared/main.lua',
'boot/server/main.lua',
}
client_scripts {
'locale.lua',
'locales/*.lua',
'config/default/config.lua',
'config/default/config.weapons.lua',
'config/default/config.items.lua',
'config/default/modules/core/*.lua',
'config/default/modules/*.lua',
'config/modules/core/*.lua',
'config/modules/*.lua',
'boot/shared/module.lua',
'boot/client/module.lua',
'boot/shared/events.lua',
'boot/client/events.lua',
'boot/shared/main.lua',
'boot/client/main.lua',
}
if esx_config.enable_loadscreen then
files {
'loadscreen/data/index.html',
'loadscreen/data/css/index.css',
'loadscreen/data/js/index.js',
'loadscreen/data/vid/esx_intro.mp4',
'loadscreen/data/vid/esx_loop.mp4'
}
loadscreen 'loadscreen/data/index.html'
loadscreen_manual_shutdown 'yes'
end