-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.lua
25 lines (21 loc) · 1.05 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
Config = {}
Config.Locale = 'en' -- [[ Local Language en by Default ]] --
Config.notifca = false -- [[ Show lock and unlock messages, false Default ]] --
Config.lockKey = 182 -- [[ Key to Lock / Unlock Vehicle L by Default ]] --
Config.lockNPC = true -- [[ Lock all NPC cars True By Default ]] --
Config.defLock = false -- [[ Default setting for Owned vehicles false by default ]] --
Config.lChance = 10 -- [[ Percent chance of vehicle being unlocked ]] --
Config.rDist = 10 -- [[ Distance for vehicles in area default 10 ]] --
Config.emergencyJob = { -- [[ Names of emergency jobs for emergency vehicle locks ]] --
"police",
"bcso",
"ambulance"
}
Config.JobsandPlates = { -- [[ Job name and Number Plate NOTE: this removes any numbers E.G PDM 477 will read PDM ]] --
[1] = {job = 'cardealer', plate = 'PDM'},
[2] = {job = 'mechanic', plate = 'BENNY'}
}
Config.blacklist = { -- [[ Vehicles that will always be locked ]] --
"T20",
"RHINO"
}