forked from Faroeste-Roleplay/frp_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxmanifest.lua
80 lines (70 loc) · 1.58 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
fx_version "adamant"
game "rdr3"
rdr3_warning "I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships."
shared_scripts {
"@ox_lib/init.lua",
"config.lua",
"data/allowlistRoles.lua",
---------------------
"@frp_lib/library/linker.lua",
"locale/*.lua"
}
client_scripts {
"client/_main.lua",
"client/functions.lua",
---------------------
"client/ped.lua",
"client/player.lua",
"client/events.lua",
"client/wrapper.lua"
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'@frp_logs/import.lua',
---------------------
"server/database.lua",
"server/_main.lua",
"server/auth.lua",
"server/events.lua",
"server/functions.lua",
"server/gui.lua",
-----------------------
"server/queue/graceTime.lua",
"server/queue/onPlayerConnecting.lua",
"server/queue/priority.lua",
"server/queue/helper/*.lua",
"server/queue/repository/*.lua",
-----------------------
"server/class/character.lua",
"server/class/user.lua",
"server/class/group.lua",
"server/class/groupSystem.lua",
"server/class/virtualWorld.lua",
-----------------------
"server/services/acl.lua",
"server/services/user.lua",
"server/services/group.lua",
}
files {
"web/design.css",
"web/index.html",
"web/main.js",
"web/RequestManager.js",
"web/WPrompt.js",
-----------------------
"web/img/*.png",
"web/fonts/*.ttf",
-----------------------
}
ui_page "web/index.html"
exports {
'setOverlayData',
'colorPalettes',
'textureTypes',
'overlaysInfo',
'clothOverlayItems',
'overlayAllLayers',
'setOverlaySelected',
'getDataCreator'
}
lua54 'yes'