forked from extendedmode/extendedmode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
87 lines (65 loc) · 1.3 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
81
82
83
84
85
86
87
fx_version 'bodacious'
game 'gta5'
description 'extendedmode'
version '0.1.1'
resource_type 'gametype' { name = 'extendedmode' }
server_scripts {
'@mysql-async/lib/MySQL.lua',
'locale.lua',
'locales/*.lua',
'config.lua',
'config.weapons.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'
}
client_scripts {
'locale.lua',
'locales/*.lua',
'config.lua',
'config.weapons.lua',
'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 {
'locale.js',
'html/ui.html',
'html/css/app.css',
'html/js/mustache.min.js',
'html/js/wrapper.js',
'html/js/app.js',
'html/fonts/pdown.ttf',
'html/fonts/bankgothic.ttf',
'html/img/accounts/bank.png',
'html/img/accounts/black_money.png',
'html/img/accounts/money.png',
'imports.lua'
}
exports {
'getSharedObject'
}
server_exports {
'getSharedObject'
}
dependencies {
'mysql-async',
}
provide 'es_extended'