forked from Demo4889/qb-burgershot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
97 lines (95 loc) · 2.16 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
Config = {}
Config.Locations = {
["duty"] = {
[1] = vector4(-1188.14, -900.73, 13.97, 123.32),
},
["tray1"] = {
[1] = vector4(-1191.95, -897.91, 14.42, 122.21),
},
["pattycooker"] = {
[1] = vector4(-1198.72, -896.24, 13.97, 26.0),
},
["fryer"] = {
[1] = vector4(-1200.62, -897.45, 13.97, 35.65),
},
["drinks"] = {
[1] = vector4(-1196.28, -894.61, 13.97, 120.18),
},
["fridge"] = {
[1] = vector4(-1200.84, -901.26, 13.97, 134.03),
},
["storage"] = {
[1] = vector4(-1194.63, -897.88, 14.13, 128.76),
},
["craftburger"] = {
[1] = vector4(-1196.61, -900.37, 13.97, 31.54),
},
["cashregister"] = {
[1] = vector4(-1194.37, -895.16, 13.97, 301.95),
},
["garage"] = {
[1] = vector4(-1174.34, -900.74, 13.72, 297.36),
},
}
Config.Items = {
label = "Shop",
slots = 7,
items = {
[1] = {
name = "burger-bun",
price = 0,
amount = 5,
info = {},
type = "item",
slot = 1,
},
[2] = {
name = "burger-raw",
price = 0,
amount = 5,
info = {},
type = "item",
slot = 2,
},
[3] = {
name = "burger-tomato",
price = 0,
amount = 5,
info = {},
type = "item",
slot = 3,
},
[4] = {
name = "burger-lettuce",
price = 0,
amount = 5,
info = {},
type = "item",
slot = 4,
},
[5] = {
name = "burger-potato",
price = 0,
amount = 2,
info = {},
type = "item",
slot = 5,
},
[6] = {
name = "burger-mshakeformula",
price = 0,
amount = 5,
info = {},
type = "item",
slot = 6,
},
[7] = {
name = "burger-sodasyrup",
price = 0,
amount = 5,
info = {},
type = "item",
slot = 7,
},
}
}