-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
49 lines (40 loc) · 950 Bytes
/
fxmanifest.lua
File metadata and controls
49 lines (40 loc) · 950 Bytes
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'
lua54 'yes'
use_experimental_fxv2_oal 'yes'
game 'gta5'
name 'ps-mdt'
author "Project Sloth Development Team"
description 'Project Sloth MDT'
version '3.1.0'
ui_page 'web/dist/index.html'
dependencies {
'ps_lib',
'oxmysql',
'ox_lib'
}
shared_scripts {
'config.lua',
'@ox_lib/init.lua'
}
client_script {
'client/**.lua'
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/**.lua'
}
files {
'web/dist/index.html',
'web/dist/**/*'
}
data_file 'DLC_ITYP_REQUEST' 'stream/ps-mdt.ytyp'
-- Server convars (set in server.cfg):
-- set ps_mdt_fivemanage_key_images "YOUR_FIVEMANAGE_IMAGES_API_KEY"
-- set ps_mdt_fivemanage_key_logs "YOUR_FIVEMANAGE_LOGS_API_KEY"
convar_category 'PS-MDT' {
'Settings for ps-mdt resource',
{
{ 'FiveManage Images API Key', 'ps_mdt_fivemanage_key_images', 'CV_STRING', '' },
{ 'FiveManage Logs API Key', 'ps_mdt_fivemanage_key_logs', 'CV_STRING', '' },
}
}