-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
67 lines (61 loc) · 1.58 KB
/
config.lua
File metadata and controls
67 lines (61 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Config = {}
Config.Debug = true
Config.KickPlayersOutOnResourceStop = true
Config.ControlLaptop = {
model = 'v_corp_desksetb',
}
Config.Safe = {
model = 'xm3_prop_xm3_safe_01a',
}
Config.Upgrades = {
vault = {
label = "Vault",
description = "A secure vault to store your valuables.",
[1] = {
inventorySlots = 10,
inventoryWeight = 10000.0,
model = 'reh_prop_reh_box_wood01a',
},
[2] = {
inventorySlots = 15,
inventoryWeight = 15000.0,
model = 'v_med_storage',
},
[3] = {
inventorySlots = 20,
inventoryWeight = 20000.0,
model = 'xm3_prop_xm3_safe_01a',
},
},
securityCameras = {
label = "Security Cameras",
description = "Install security cameras around your safehouse.",
},
reinforcedDoor = {
label = "Reinforced Door",
description = "Upgrade your door to be more resistant to break-ins.",
}
}
Config.SafeHouseTiers = {
[1] = {
price = 100000,
upgrades = {
vault = {minLevel = 1, maxLevel = 3}
}
},
[2] = {
price = 250000,
upgrades = {
vault = {minLevel = 2, maxLevel = 4},
securityCameras = {minLevel = 1, maxLevel = 2},
}
},
[3] = {
price = 500000,
upgrades = {
vault = {minLevel = 3, maxLevel = 5},
securityCameras = {minLevel = 2, maxLevel = 3},
reinforcedDoor = {minLevel = 1, maxLevel = 1},
},
}
}