-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
65 lines (56 loc) · 1.05 KB
/
fxmanifest.lua
File metadata and controls
65 lines (56 loc) · 1.05 KB
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
fx_version 'cerulean'
game 'gta5'
lua54 'yes'
use_experimental_fxv2_oal 'yes'
author 'Carter'
description 'Foundation police script for Qbox'
version '1.0.0'
name 'policesystem'
ui_page 'html/index.html'
shared_scripts {
'@ox_lib/init.lua',
'@qbx_core/modules/lib.lua',
'config.lua',
'locales/en.lua',
'shared/main.lua',
'data/*.lua',
}
client_scripts {
'@qbx_core/modules/playerdata.lua',
'client/impound.lua',
'client/main.lua',
'client/vehicles.lua',
'client/evidence.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/main.lua',
'server/vehicles.lua',
'server/garage.lua',
'server/evidence.lua',
}
files {
'html/index.html',
'html/script.js',
'html/main.css',
'html/vue.min.js',
}
dependencies {
'qbx_core',
'ox_lib',
'ox_target',
'ox_inventory',
'qbx_vehiclekeys',
}
exports {
'handcuffs',
'gsrtestkit',
'breathalyzer',
'fingerprintscanner',
'body_cam',
'drinkAlcohol',
'submitEvidence',
}
server_exports {
'drinkAlcohol',
}