-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
28 lines (27 loc) · 987 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
Config = {}
----------------------------------------------------------------------
----------------------------------------------------------------------
Config.Progressbar = 'ox_lib' -- esx/ox_lib
Config.KombiDauer = 4000 -- Progressbar Zeit
Config.KombiText = 'Kombinieren..' -- Progressbar Text
Config.KombiPosition = 'middle' -- Progressbar Position ONLY ox_lib
----------------------------------------------------------------------
----------------------------------------------------------------------
Config.Combinations = {
['pizza_kaese'] = { -- Das Ziehende Item
needs = {
{
item = 'pizza_karton', -- Benötigte Items
amount = 1
},
},
result = {
[1] = {
name = 'pizza_karton_kaese', -- Erhaltene Items
amount = 1
},
},
firstcombiremove = true, -- Entfernt Item
needcombiremove = true, -- Entfernt Item
},
}