-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.lua
28 lines (23 loc) · 1.09 KB
/
config.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
Config = {}
Config.Debug = false -- Set to true for debug mode (shows client/server tables in console)
Config.GKSPhone = false -- Set to true if using gks phone, false for qb-phone
Config.LockOnFlag = false -- Set to true to lock front plate reader on flagged status
Config.NotifDuration = 6000 -- Time until scan notification disappears (default = 6sec)
Config.OxTarget = true -- Set True if using ox-target, false will use qb-target
Config.AllowedVehicles = {
[1] = {model = "nkbuffalos", label = 'Bravado Buffalo S'},
[2] = {model = 'nkscout', label = 'Vapid Scout'},
[3] = {model = 'nkcoquette', label = 'Invetero Coquette'},
[4] = {model = 'nkcruiser', label = 'Vapid Stainer'},
[5] = {model = 'nktorrence', label = 'Vapid Torrence'}
}
Config.GTAVSounds = { -- Frontend sounds from GTAV (https://wiki.gtanet.work/index.php?title=FrontEndSoundlist)
good = {
name = "5_Second_Timer",
ref = "DLC_HEISTS_GENERAL_FRONTEND_SOUNDS",
},
bad = {
name = "Event_Message_Purple",
ref = "GTAO_FM_Events_Soundset",
},
}