forked from TrevorBarns/ProLaser4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
49 lines (41 loc) · 1.17 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
------------------------------
fx_version 'cerulean'
games { 'gta5' }
lua54 'on'
author 'Trevor Barns'
description 'Lidar Resource.'
version '1.1.0' -- Readonly version of currently installed version.
------------------------------
ui_page('UI/html/index.html')
dependencies {
-- 'oxmysql', -- uncomment for persistent records & record management tablet. See docs and configs.
}
files {
'speedlimits.json',
'UI/html/index.html',
'UI/html/fonts/**.ttf',
'UI/html/**.png',
'UI/html/**.jpg',
'UI/html/lidar.js',
'UI/html/**.css',
'UI/html/sounds/*.ogg',
'UI/weapons_dlc_bb.png',
'metas/*.meta',
}
data_file 'WEAPON_METADATA_FILE' 'metas/weaponarchetypes.meta'
data_file 'WEAPON_ANIMATIONS_FILE' 'metas/weaponanimations.meta'
data_file 'CONTENT_UNLOCKING_META_FILE' 'metas/contentunlocks.meta'
data_file 'PED_PERSONALITY_FILE' 'metas/pedpersonality.meta'
data_file 'WEAPONINFO_FILE' 'metas/weapons.meta'
client_scripts {
'UI/cl_*.lua',
'UTIL/cl_*.lua',
}
server_scripts {
-- '@oxmysql/lib/MySQL.lua', -- uncomment for persistent records & record management tablet. See docs and configs.
'UTIL/sv_*.lua',
'UTIL/semver.lua'
}
shared_scripts {
'config.lua',
}