-
Notifications
You must be signed in to change notification settings - Fork 1
/
fxmanifest.lua
60 lines (48 loc) · 996 Bytes
/
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
fx_version 'cerulean'
game 'gta5'
server_scripts {
'common/modules/async.lua',
'@mysql-async/lib/MySQL.lua',
'server/common.lua',
'server/classes/player.lua',
'server/functions.lua',
'server/paycheck.lua',
'server/main.lua',
'server/commands.lua',
'common/modules/math.lua',
'common/modules/table.lua',
'common/functions.lua'
}
shared_scripts {
'locale.lua',
'locales/*.lua',
'config.lua',
'config.items.lua' -- seems not to be used en
}
client_scripts {
'client/common.lua',
'client/entityiter.lua',
'client/functions.lua',
'client/wrapper.lua',
'client/main.lua',
'client/modules/death.lua',
'client/modules/scaleform.lua',
'client/modules/streaming.lua',
'common/modules/math.lua',
'common/modules/table.lua',
'common/functions.lua'
}
ui_page 'html/ui.html'
files {
'imports.lua',
'locale.js',
'html/ui.html',
'html/css/app.css',
'html/js/mustache.min.js',
'html/js/wrapper.js',
'html/js/app.js'
}
dependencies {
'mysql-async',
'mythic_notify'
}