-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
39 lines (32 loc) · 642 Bytes
/
fxmanifest.lua
File metadata and controls
39 lines (32 loc) · 642 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
fx_version "cerulean"
game "gta5"
author "Pickle Mods"
version "v1.2.0"
ui_page "nui/index.html"
files {
"nui/index.html",
"nui/assets/**/*.*",
}
shared_scripts {
"@ox_lib/init.lua",
"config.lua",
"locales/locale.lua",
"locales/translations/*.lua",
"core/shared.lua"
}
client_scripts {
"bridge/**/**/client.lua",
"modules/**/client.lua",
"core/client.lua"
}
server_scripts {
"@oxmysql/lib/MySQL.lua",
"bridge/database.lua",
"bridge/**/**/server.lua",
"modules/**/server.lua",
}
-- Auto-inject database on resource start
database {
"_INSTALL/SQL/install.sql"
}
lua54 'yes'