forked from BryceCanyonCounty/bcc-doorlocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
30 lines (25 loc) · 1.06 KB
/
Copy pathconfig.lua
File metadata and controls
30 lines (25 loc) · 1.06 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
Config = {}
Config.defaultlang = 'en_lang' -- Set your language here current supported languages: "en_lang" = english
Config.DevMode = true -- false on live server
Config.CreateDoorCommand = 'createDoor' -- Command to create door
Config.DeleteDoorCommand = 'deleteDoor' -- Command to delete door
Config.doorlocksDevCommand = 'doorlocksDev'
Config.DoorRadius = 1.5 -- Maximum Distance from Door to Operate
---------- Admin Configuration (Any group listed here will be able to create and delete doors!) ----------
Config.adminGroup = 'admin'
-- These are jobs that will be able to create doors just like the admins
Config.AllowedJobs = {
{
jobname = '' --the job name
},
}
Config.LockPicking = {
minigameScript = 'bcc_minigames', -- bcc_minigames or rsd_lockpick
allowlockpicking = true, -- If true players will be able to lockpick doors
minigameSettings = {
MaxAttemptsPerLock = 3,
lockpickitem = 'lockpick',
difficulty = 50, -- Only bcc_minigames
hintdelay = 500, -- Only bcc_minigames
},
}