This repository was archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfxmanifest.lua
108 lines (82 loc) · 2.22 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
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
fx_version 'adamant'
game 'gta5'
description 'Job script created by Tigo#9999'
name 'ESX Jobs'
author 'TigoDevelopment'
contact '[email protected]'
version '1.0.0'
server_scripts {
'@async/async.lua',
'@mysql-async/lib/MySQL.lua',
'shared/locale.lua',
'locales/nl.lua',
'locales/en.lua',
'data/config/client_config.lua',
'data/config/server_config.lua',
'shared/classes/permissions.lua',
'server/classes/account.lua',
'server/classes/item.lua',
'server/classes/weapon.lua',
'server/classes/job.lua',
'server/classes/sellableItem.lua',
'server/classes/showroom.lua',
'server/common.lua',
'shared/formats.lua',
'shared/functions.lua',
'server/loadJob.lua',
'server/functions.lua',
'server/main.lua',
'server/menus/safe_items.lua',
'server/menus/wardrobe.lua',
'server/menus/safe_weapons.lua',
'server/menus/action_menu.lua',
'server/menus/showroom.lua',
'server/menus/catalogues.lua',
'server/menus/sells.lua'
}
client_scripts {
'shared/locale.lua',
'locales/nl.lua',
'locales/en.lua',
'data/config/client_config.lua',
'shared/classes/permissions.lua',
'client/common.lua',
'shared/formats.lua',
'shared/functions.lua',
'client/functions.lua',
'client/handlers/menu_default.lua',
'client/handlers/menu_dialog.lua',
'client/menus/safe_items.lua',
'client/menus/wardrobe.lua',
'client/menus/safe_weapons.lua',
'client/menus/parkings.lua',
'client/menus/vehicles.lua',
'client/menus/action_menu.lua',
'client/menus/showroom.lua',
'client/menus/catalogues.lua',
'client/menus/sells.lua',
'client/main.lua'
}
files {
'html/index.html',
'html/css/menu_default.css',
'html/css/menu_dialog.css',
'html/js/mustache.min.js',
'html/js/menus.js',
'html/img/headers/*.jpg',
'html/img/headers/*.png',
-- Fonts
'html/fonts/BebasNeue/BebasNeueBold.otf',
'html/fonts/BebasNeue/BebasNeueBook.otf',
'html/fonts/BebasNeue/BebasNeueLight.otf',
'html/fonts/BebasNeue/BebasNeueRegular.otf',
'html/fonts/BebasNeue/BebasNeueThin.otf'
}
ui_page {
'html/index.html'
}
dependencies {
'es_extended',
'mysql-async',
'async',
}