-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
46 lines (40 loc) · 1.22 KB
/
config.lua
File metadata and controls
46 lines (40 loc) · 1.22 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
Config = {}
Config.Framework = 'auto'
Config.Garages = 'auto'
Config.VehicleKeys = 'auto'
Config.Notify = 'auto'
Config.Target = 'auto'
Config.debug = true
Config.zUIFix = true -- Not needed anymore, auto detect zUI-v2
Config.UpdateCheckURL = 'https://raw.githubusercontent.com/toine-scripts/ts-lib/main/version.json'
Config.UpdateCheckChangelogURL = 'https://docs.toine.me/scripts/ts-lib/changelog'
Config.Data = {
Framework = {
['qbcore'] = 'qb-core',
['esx'] = 'es_extended',
['qbox'] = 'qbx_core',
['standalone'] = 'standalone',
},
Garages = {
['qb-garages'] = 'qb-garages',
['esx_garage'] = 'esx_garage',
['vms_garagesv2'] = 'vms_garagesv2',
['jg-advancedgarages'] = 'jg-advancedgarages',
['standalone'] = 'standalone',
},
VehicleKeys = {
['qb-vehiclekeys'] = 'qb-vehiclekeys',
['qs-vehiclekeys'] = 'qs-vehiclekeys',
['lfKeys'] = 'lfKeys',
['standalone'] = 'standalone',
},
Notify = {
['qbcore'] = 'qb-core',
['esx'] = 'esx_notify',
-- Add more notify systems here
},
Target = {
['qb-target'] = 'qb-target',
['ox_target'] = 'ox_target',
},
}