forked from qbcore-redm-framework/qbr-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
53 lines (47 loc) · 1016 Bytes
/
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
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
Config = {}
Config.CraftingObject = `prop_toolchest_05`
Config.CraftingItems = {
[1] = {
name = "lockpick",
amount = 20,
info = {},
costs = {
["metalscrap"] = 20,
["plastic"] = 20,
},
type = "item",
threshold = 0,
points = 1,
},
[2] = {
name = "coffee",
amount = 20,
info = {},
costs = {
["coffeeseeds"] = 20,
["water_bottle"] = 20,
},
type = "item",
threshold = 0,
points = 2,
},
}
Config.AttachmentCraftingLocation = vector3(-277.2096, 779.3605, 119.504)
Config.AttachmentCrafting = {
[1] = {
name = "weapon_revolver_cattleman",
amount = 50,
info = {},
costs = {
["metalscrap"] = 140,
},
type = "item",
threshold = 0,
points = 1,
},
}
MaxInventorySlots = 41
Config.MaximumAmmoValues = {
["pistol"] = 250,
["rifle"] = 250,
}