This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
67 lines (61 loc) · 1.84 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
Config = {}
Config.Debug = true -- Shows Zone debug and other debug related items
Config.ImagePath = 'qb-inventory/html/images/'
Config.DefaultEmote = 'mechanic'
Config.Styles = {}
Config.CraftingLocations = {
['example'] = {
labels = {
header = "Crafting Bench",
costs = "Required Materials",
crafting = "Items Made",
submit = "Craft",
},
coords = vector3(-33.38, -1114.97, 26.0),
emote = 'mechanic',
-- OR
-- scenario = 'WORLD_HUMAN_WELDING',
-- OR
-- animDict = "anim@amb@clubhouse@tutorial@bkr_tut_ig3@",
-- anim = "machinic_loop_mechandplayer",
-- animFlag = 16,
-- job = 'mechanic', -- Can also use table like { ['mechanic'] = 0}
-- gang = 'vagos', -- Can also use table like { ['vagos'] = 0}
items = {
{
name = 'armor',
label = 'Armor',
image = 'armor.png',
craftedAmount = 2,
requiredItems = {
{
name = 'plastic',
label = 'Plastic',
image = 'plastic.png',
amount = 3
},
{
name = 'rubber',
label = 'Rubber',
image = 'rubber.png',
amount = 2
},
{
name = 'steel',
label = 'Steel',
image = 'steel.png',
amount = 1
}
},
}
}
}
}
Config.Logs = {
onOpen = false,
onCraft = false,
onCraftFail = false,
onCraftCancel = false,
onClose = false,
onExploits = true
}