-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
51 lines (43 loc) · 890 Bytes
/
Copy pathfxmanifest.lua
File metadata and controls
51 lines (43 loc) · 890 Bytes
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
fx_version 'cerulean'
game 'gta5'
lua54 'yes'
version '1.0'
author 'push.42'
shared_script '@es_extended/imports.lua'
--Client Scripts--
client_scripts {
'Client/**.lua',
'config.lua',
'@es_extended/locale.lua'
}
--Server Scripts--
server_scripts {
'Server/**.lua',
'config.lua',
'@oxmysql/lib/MySQL.lua', -- oxmysql library
'@es_extended/locale.lua',
"@mysql-async/lib/MySQL.lua"
}
--UI Part--
ui_page {
'html/index.html',
}
--File Part--
files {
'html/index.html',
'html/app.js',
'html/style.css',
'html/main.css',
'html/assets/*.png',
'html/assets/*.jpeg',
'html/assets/*.webp',
'html/assets/*.gif',
'html/assets/*.jpg',
'html/assets/*.wav',
'html/assets/*.mp3',
'html/assets/*.mp4'
}
-- ESX Dependency
dependency 'es_extended' -- Make sure ESX is started before your script
dependency 'oxmysql' -- Add oxmysql as a dependency
dependency 'mysql-async'