-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
61 lines (47 loc) · 936 Bytes
/
fxmanifest.lua
File metadata and controls
61 lines (47 loc) · 936 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
52
53
54
55
56
57
58
59
60
61
game 'gta5'
fx_version 'cerulean'
name 'Project Dogeaterx'
description 'The Core resource that provides the functionalities for all other resources.'
lua54 'yes'
version '2.10.0'
git_version '2.10.0'
use_experimental_fxv2_oal 'yes'
author 'ESX | Dogeaterx (Sure)'
dogeaterx_debug 'no'
shared_scripts {
'@ox_lib/init.lua',
'shared/main.lua',
'shared/functions.lua',
'shared/require.lua',
'shared/modules/*.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/init.lua'
}
client_scripts {
'client/init.lua'
}
ui_page 'nui/dist/index.html'
files {
'nui/dist/index.html',
'nui/dist/assets/*.js',
'nui/dist/assets/*.css',
'locale.lua',
'imports.lua',
'shared/require.lua',
--- Shared
'settings/**/*.lua',
'modules/**/*.lua',
--- Store data
'locales/*.json',
'db/items.json',
--- For: client
'client/**/*.lua',
}
dependencies {
'/native:0x6AE51D4B',
'/native:0xA61C8FC6',
'oxmysql',
'ox_lib'
}