Installation Guide
Follow these steps for flawless instalation:
Download the script from your keymaster.
Place the script into your server resource folder:
FXServer\server-data\resources\fivecode_burgershotjob
Write the script into your server.cfg:
ensure fivecode_burgershotjob
Setup your inventory:
ox
Add the following into:
ox_inventory\modules\items\client.lua
local trayItems = {'burgershotfoodtray', 'burgershotfoodtrayempty'}
for _, item in pairs(trayItems) do
Item(item, function(data, slot)
TriggerEvent('fivecode_burgershotjob:placeTray', data.name)
end)
end
local usableFoodItems = {'burgershotcola', 'burgershotcolalight', 'burgershotsprunk', 'burgershotorang_o_tang', 'burgershotcolaslushie', 'burgershotcolalightslushie', 'burgershotsprunkslushie', 'burgershotorang_o_tangslushie', 'friedfries', 'friedmozzarellastick', 'friedonionring', 'classicburger', 'classicburgerspicy', 'chickenburger', 'chickenburgerspicy', 'chickenburgerspicy','fishburger', 'obeseburger', 'steakburger', 'reverseburger', 'burgershotsandwich'}
for _, item in pairs(usableFoodItems) do
Item(item, function(data, slot)
TriggerEvent('fivecode_burgershotjob:useFoodItem', data.name)
end)
end
and this into:
ox_inventory\data\items.lua
-- Other
['salt'] = {
label = 'Salt',
weight = 1,
stack = true,
close = true,
description = 'Cooking salt!'
},
['burgershotdrinkcup'] = {
label = 'Empty Drinking Cup',
weight = 1,
stack = true,
close = true,
description = 'Burgershot empty drinking cup.'
},
['ice'] = {
label = 'Ice',
weight = 1,
stack = true,
close = true,
description = 'Ice ready to cool your drink!'
},
['butter'] = {
label = 'Butter',
weight = 1,
stack = true,
close = true,
description = 'Butter for cooking.'
},
['colasyrup'] = {
label = 'eCola Syrup',
weight = 1,
stack = true,
close = true,
description = 'Syrup from which you can make delicious cola drink!'
},
['colalightsyrup'] = {
label = 'eCola Light Syrup',
weight = 1,
stack = true,
close = true,
description = 'Syrup from which you can make delicious light cola drink!'
},
['sprunksyrup'] = {
label = 'Sprunk Syrup',
weight = 1,
stack = true,
close = true,
description = 'Syrup from which you can make delicious sprunk drink!'
},
['orang_o_tangsyrup'] = {
label = 'Orang O Tang Syrup',
weight = 1,
stack = true,
close = true,
description = 'Syrup from which you can make delicious orang o tang drink!'
},
['ketchup'] = {
label = 'Ketchup',
weight = 1,
stack = true,
close = true,
description = 'Normal ketchup.'
},
-- Cutting Table
['rawtomato'] = {
label = 'Tomato',
weight = 1,
stack = true,
close = true,
description = 'Juicy tomato ready to be sliced!'
},
['slicedtomato'] = {
label = 'Sliced Tomato',
weight = 1,
stack = true,
close = true,
description = 'Juicy tomato slices ready to be eaten!'
},
['rawsalad'] = {
label = 'Salad',
weight = 1,
stack = true,
close = true,
description = 'Salad ready to be sliced!'
},
['slicedsalad'] = {
label = 'Sliced Salad',
weight = 1,
stack = true,
close = true,
description = 'Salad slices ready to be eaten!'
},
['rawcucumber'] = {
label = 'Cucumber',
weight = 1,
stack = true,
close = true,
description = 'Cucumber ready to be cut!'
},
['slicedcucumber'] = {
label = 'Sliced Cucumber',
weight = 1,
stack = true,
close = true,
description = 'Sliced cucumber ready to be put on a burger and eaten!'
},
['rawonion'] = {
label = 'Onion',
weight = 1,
stack = true,
close = true,
description = 'Onion ready to be cut!'
},
['slicedonion'] = {
label = 'Sliced Onion',
weight = 1,
stack = true,
close = true,
description = 'Sliced onion ready to be put on a burger and eaten!'
},
['rawchillipepper'] = {
label = 'Chilli Pepper',
weight = 1,
stack = true,
close = true,
description = 'Chilli pepper ready to be cut!'
},
['slicedchillipepper'] = {
label = 'Sliced Chilli Pepper',
weight = 1,
stack = true,
close = true,
description = 'Sliced chilli pepper ready to be put on a burger and eaten!'
},
['rawcheese'] = {
label = 'Cheese',
weight = 1,
stack = true,
close = true,
description = 'Cheese ready to be cut!'
},
['slicedcheese'] = {
label = 'Sliced Cheese',
weight = 1,
stack = true,
close = true,
description = 'Sliced cheese ready to be put on a burger and eaten!'
},
['rawham'] = {
label = 'Ham',
weight = 1,
stack = true,
close = true,
description = 'Ham ready to be cut!'
},
['slicedham'] = {
label = 'Sliced Ham',
weight = 1,
stack = true,
close = true,
description = 'Sliced ham ready to be put on a burger and eaten!'
},
['rawbacon'] = {
label = 'Bacon',
weight = 1,
stack = true,
close = true,
description = 'Bacon ready to be cut!'
},
['slicedbacon'] = {
label = 'Bacon',
weight = 1,
stack = true,
close = true,
description = 'Sliced bacon ready to be put on a sandwich or grilled and eaten!'
},
['rawsandwichbread'] = {
label = 'Sandwich Bread',
weight = 1,
stack = true,
close = true,
description = 'Sandwich Bread ready to be cut!'
},
['slicedsandwichbread'] = {
label = 'Sandwich Bread',
weight = 1,
stack = true,
close = true,
description = 'Sliced sandwich bread ready to be put on a burger and eaten!'
},
['rawburgerbun'] = {
label = 'Burger Bun',
weight = 1,
stack = true,
close = true,
description = 'Burger bun ready to be cut in half!'
},
['slicedburgerbun'] = {
label = 'Sliced Burger Bun',
weight = 1,
stack = true,
close = true,
description = 'Sliced burger bun ready to be grilled!'
},
-- Frier
['frozenfries'] = {
label = 'Frozen Fries',
weight = 1,
stack = true,
close = true,
description = 'Frozen fries ready to be fried!'
},
['friedfries'] = {
label = 'Fries',
weight = 1,
stack = true,
close = true,
description = 'Fries ready to be eaten!'
},
['friedonionring'] = {
label = 'Onion Ring',
weight = 1,
stack = true,
close = true,
description = 'Onion ring ready to be eaten!'
},
['friedmozzarellastick'] = {
label = 'Fried Mozzarella Stick',
weight = 1,
stack = true,
close = true,
description = 'Fried mozzarella stick ready to be eaten!'
},
['rawchickenstrip'] = {
label = 'Raw Chicken',
weight = 1,
stack = true,
close = true,
description = 'Raw chicken ready to be fried!'
},
['friedchickenstrip'] = {
label = 'Fried Chicken',
weight = 1,
stack = true,
close = true,
description = 'Fried chicken ready to be put into a burger and eaten!'
},
['rawfishstrip'] = {
label = 'Raw Fish',
weight = 1,
stack = true,
close = true,
description = 'Raw fish ready to be fried!'
},
['friedfishstrip'] = {
label = 'Fried Fish',
weight = 1,
stack = true,
close = true,
description = 'Fried fish ready to be put into a burger and eaten!'
},
-- Grill
['frozenburgermeat'] = {
label = 'Frozen Burger Meat',
weight = 1,
stack = true,
close = true,
description = 'Frozen burger meat ready to be grilled!'
},
['grilledburgermeat'] = {
label = 'Grilled Burger Meat',
weight = 1,
stack = true,
close = true,
description = 'Burger meat ready to be put into a burger and eaten!'
},
['grilledbacon'] = {
label = 'Grilled Bacon',
weight = 1,
stack = true,
close = true,
description = 'Burger bacon ready to be put into a burger and eaten!'
},
['rawsteak'] = {
label = 'Raw Steak',
weight = 1,
stack = true,
close = true,
description = 'Raw steak ready to be grilled!'
},
['grilledsteak'] = {
label = 'Grilled Steak',
weight = 1,
stack = true,
close = true,
description = 'Grilled steak ready to be put into a burger and eaten!'
},
['rawegg'] = {
label = 'Raw Egg',
weight = 1,
stack = true,
close = true,
description = 'Egg steak ready to be grilled!'
},
['friedegg'] = {
label = 'Fried Egg',
weight = 1,
stack = true,
close = true,
description = 'Fried egg ready to be put into a burger and eaten!'
},
['grilledburgerbun'] = {
label = 'Grilled Burger Bun',
weight = 1,
stack = true,
close = true,
description = 'Grilled burger bun ready to be filled!'
},
-- Drinks
['burgershotcola'] = {
label = 'eCola',
weight = 1,
stack = true,
close = true,
description = 'eCola from burgershot.'
},
['burgershotcolalight'] = {
label = 'eCola Light',
weight = 1,
stack = true,
close = true,
description = 'eCola light from burgershot.'
},
['burgershotsprunk'] = {
label = 'Sprunk',
weight = 1,
stack = true,
close = true,
description = 'Sprunk from burgershot.'
},
['burgershotorang_o_tang'] = {
label = 'Orang O Tang',
weight = 1,
stack = true,
close = true,
description = 'Orang o tang from burgershot.'
},
-- Burgers
['classicburger'] = {
label = 'GrillMaster Classic Burger',
weight = 1,
stack = true,
close = true,
description = 'Classic burger with your favorite flavors!'
},
['classicburgerspicy'] = {
label = 'GrillMaster Spicy Classic Burger',
weight = 1,
stack = true,
close = true,
description = 'Spicy classic burger with your favorite flavors!'
},
['chickenburger'] = {
label = 'Loaded Chicken Avenger',
weight = 1,
stack = true,
close = true,
description = 'Chicken burger with your beloved crispy chicken!'
},
['chickenburgerspicy'] = {
label = 'Loaded Spicy Chicken Avenger',
weight = 1,
stack = true,
close = true,
description = 'Spicy chicken burger with your beloved crispy chicken!'
},
['fishburger'] = {
label = 'Ocean Catch Burger',
weight = 1,
stack = true,
close = true,
description = 'Fish burger with your beloved freshly caught and fried fish!'
},
['obeseburger'] = {
label = 'The Cardiac Crusher',
weight = 1,
stack = true,
close = true,
description = 'A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!'
},
['steakburger'] = {
label = 'The Cardiac Crusher',
weight = 1,
stack = true,
close = true,
description = 'For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?'
},
['reverseburger'] = {
label = 'Reverse Burger',
weight = 1,
stack = true,
close = true,
description = 'Flip tradition on its head and try this amazing reverse burger where salad replaced buns!'
},
['burgershotsandwich'] = {
label = 'Sunrise Ham Melt',
weight = 1,
stack = true,
close = true,
description = 'Spicy chicken burger with your beloved crispy chicken!'
},
-- Other Items
['cleansponge'] = {
label = 'Clean Sponge',
weight = 1,
stack = true,
close = true,
description = 'Clean sponge which is ready for some cleaning!'
},
['dirtysponge'] = {
label = 'Dirty Sponge',
weight = 1,
stack = true,
close = true,
description = 'Dirty sponge which needs to be cleaned!'
},
['cleancup'] = {
label = 'Clean Cup',
weight = 1,
stack = true,
close = true,
description = 'Clean cup ready to be filled to the brim!'
},
['dirtycup'] = {
label = 'Dirty Cup',
weight = 1,
stack = true,
close = true,
description = 'Dirty cup which needs to be cleaned!'
},
['burgershotfoodtray'] = {
label = 'Food Tray',
weight = 1,
stack = true,
close = true,
description = 'Food tray from burgershot.'
},
['burgershotfoodtrayempty'] = {
label = 'Empty Food Tray',
weight = 1,
stack = true,
close = true,
description = 'Empty food tray from burgershot.'
},
qb
Add the following into:
qb-core\shared\items.lua
-- Other
salt = {name = "salt", label = "Salt", weight = 200, type = "item", image = "salt.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking salt!"},
burgershotdrinkcup = {name = "burgershotdrinkcup", label = "Empty Drinking Cup", weight = 50, type = "item", image = "burgershotdrinkcup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burgershot empty drinking cup."},
ice = {name = "ice", label = "Ice", weight = 500, type = "item", image = "ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
butter = {name = "butter", label = "Butter", weight = 250, type = "item", image = "butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Butter for cooking."},
colasyrup = {name = "colasyrup", label = "eCola Syrup", weight = 1000, type = "item", image = "colasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious cola drink!"},
colalightsyrup = {name = "colalightsyrup", label = "eCola Light Syrup", weight = 1000, type = "item", image = "colalightsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious light cola drink!"},
sprunksyrup = {name = "sprunksyrup", label = "Sprunk Syrup", weight = 1000, type = "item", image = "sprunksyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious sprunk drink!"},
orang_o_tangsyrup = {name = "orang_o_tangsyrup", label = "Orang O Tang Syrup", weight = 1000, type = "item", image = "orang_o_tangsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious orang o tang drink!"},
ketchup = {name = "ketchup", label = "Ketchup", weight = 500, type = "item", image = "ketchup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Normal ketchup."},
-- Cutting Table
rawtomato = {name = "rawtomato", label = "Tomato", weight = 200, type = "item", image = "rawtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato ready to be sliced!"},
slicedtomato = {name = "slicedtomato", label = "Sliced Tomato", weight = 100, type = "item", image = "slicedtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato slices ready to be eaten!"},
rawsalad = {name = "rawsalad", label = "Salad", weight = 150, type = "item", image = "rawsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad ready to be sliced!"},
slicedsalad = {name = "slicedsalad", label = "Sliced Salad", weight = 75, type = "item", image = "slicedsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad slices ready to be eaten!"},
rawcucumber = {name = "rawcucumber", label = "Cucumber", weight = 200, type = "item", image = "rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
slicedcucumber = {name = "slicedcucumber", label = "Sliced Cucumber", weight = 100, type = "item", image = "slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
rawonion = {name = "rawonion", label = "Onion", weight = 200, type = "item", image = "rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut!"},
slicedonion = {name = "slicedonion", label = "Sliced Onion", weight = 100, type = "item", image = "slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put on a burger and eaten!"},
rawchillipepper = {name = "rawchillipepper", label = "Chilli Pepper", weight = 50, type = "item", image = "rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut!"},
slicedchillipepper = {name = "slicedchillipepper", label = "Sliced Chilli Pepper", weight = 25, type = "item", image = "slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be put on a burger and eaten!"},
rawcheese = {name = "rawcheese", label = "Cheese", weight = 200, type = "item", image = "rawcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cheese ready to be cut!"},
slicedcheese = {name = "slicedcheese", label = "Sliced Cheese", weight = 100, type = "item", image = "slicedcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cheese ready to be put on a burger and eaten!"},
rawham = {name = "rawham", label = "Ham", weight = 500, type = "item", image = "rawham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ham ready to be cut!"},
slicedham = {name = "slicedham", label = "Sliced Ham", weight = 250, type = "item", image = "slicedham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced ham ready to be put on a burger and eaten!"},
rawbacon = {name = "rawbacon", label = "Bacon", weight = 300, type = "item", image = "rawbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bacon ready to be cut!"},
slicedbacon = {name = "slicedbacon", label = "Sliced Bacon", weight = 150, type = "item", image = "slicedbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced bacon ready to be put on a sandwich or grilled and eaten!"},
rawsandwichbread = {name = "rawsandwichbread", label = "Sandwich Bread", weight = 400, type = "item", image = "rawsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sandwich Bread ready to be cut!"},
slicedsandwichbread = {name = "slicedsandwichbread", label = "Sliced Sandwich Bread", weight = 200, type = "item", image = "slicedsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced sandwich bread ready to be put on a burger and eaten!"},
rawburgerbun = {name = "rawburgerbun", label = "Burger Bun", weight = 250, type = "item", image = "rawburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bun ready to be cut in half!"},
slicedburgerbun = {name = "slicedburgerbun", label = "Sliced Burger Bun", weight = 125, type = "item", image = "slicedburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced burger bun ready to be grilled!"},
-- Frier
frozenfries = {name = "frozenfries", label = "Frozen Fries", weight = 500, type = "item", image = "frozenfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen fries ready to be fried!"},
friedfries = {name = "friedfries", label = "Fries", weight = 250, type = "item", image = "friedfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fries ready to be eaten!"},
friedonionring = {name = "friedonionring", label = "Onion Ring", weight = 150, type = "item", image = "friedonionring.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ring ready to be eaten!"},
friedmozzarellastick = {name = "friedmozzarellastick", label = "Fried Mozzarella Stick", weight = 100, type = "item", image = "friedmozzarellastick.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried mozzarella stick ready to be eaten!"},
rawchickenstrip = {name = "rawchickenstrip", label = "Raw Chicken", weight = 300, type = "item", image = "rawchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken ready to be fried!"},
friedchickenstrip = {name = "friedchickenstrip", label = "Fried Chicken", weight = 150, type = "item", image = "friedchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried chicken ready to be put into a burger and eaten!"},
rawfishstrip = {name = "rawfishstrip", label = "Raw Fish", weight = 300, type = "item", image = "rawfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw fish ready to be fried!"},
friedfishstrip = {name = "friedfishstrip", label = "Fried Fish", weight = 150, type = "item", image = "friedfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried fish ready to be put into a burger and eaten!"},
-- Grill
frozenburgermeat = {name = "frozenburgermeat", label = "Frozen Burger Meat", weight = 400, type = "item", image = "frozenburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen burger meat ready to be grilled!"},
grilledburgermeat = {name = "grilledburgermeat", label = "Grilled Burger Meat", weight = 200, type = "item", image = "grilledburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger meat ready to be put into a burger and eaten!"},
grilledbacon = {name = "grilledbacon", label = "Grilled Bacon", weight = 150, type = "item", image = "grilledbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bacon ready to be put into a burger and eaten!"},
rawsteak = {name = "rawsteak", label = "Raw Steak", weight = 500, type = "item", image = "rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled!"},
grilledsteak = {name = "grilledsteak", label = "Grilled Steak", weight = 250, type = "item", image = "grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be put into a burger and eaten!"},
rawegg = {name = "rawegg", label = "Raw Egg", weight = 50, type = "item", image = "rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Egg ready to be grilled!"},
friedegg = {name = "friedegg", label = "Fried Egg", weight = 30, type = "item", image = "friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten!"},
grilledburgerbun = {name = "grilledburgerbun", label = "Grilled Burger Bun", weight = 250, type = "item", image = "grilledburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled burger bun ready to be filled!"},
-- Drinks
burgershotcola = {name = "burgershotcola", label = "eCola", weight = 350, type = "item", image = "burgershotcola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola from burgershot."},
burgershotcolalight = {name = "burgershotcolalight", label = "eCola Light", weight = 350, type = "item", image = "burgershotcolalight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola light from burgershot."},
burgershotsprunk = {name = "burgershotsprunk", label = "Sprunk", weight = 350, type = "item", image = "burgershotsprunk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sprunk from burgershot."},
burgershotorang_o_tang = {name = "burgershotorang_o_tang", label = "Orang O Tang", weight = 350, type = "item", image = "burgershotorang_o_tang.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Orang o tang from burgershot."},
burgershotcolaslushie = {name = "burgershotcolaslushie", label = "eCola Slushie", weight = 400, type = "item", image = "burgershotcolaslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola."},
burgershotcolalightslushie = {name = "burgershotcolalightslushie", label = "eCola Light Slushie", weight = 400, type = "item", image = "burgershotcolalightslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola light."},
burgershotsprunkslushie = {name = "burgershotsprunkslushie", label = "Sprunk Slushie", weight = 400, type = "item", image = "burgershotsprunkslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite sprunk drink."},
burgershotorang_o_tangslushie = {name = "burgershotorang_o_tangslushie", label = "Orang O Tang Slushie", weight = 400, type = "item", image = "burgershotorang_o_tangslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite orang o tang drink."},
-- Burgers
classicburger = {name = "classicburger", label = "GrillMaster Classic Burger", weight = 500, type = "item", image = "classicburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic burger with your favorite flavors!"},
classicburgerspicy = {name = "classicburgerspicy", label = "GrillMaster Spicy Classic Burger", weight = 500, type = "item", image = "classicburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy classic burger with your favorite flavors!"},
chickenburger = {name = "chickenburger", label = "Loaded Chicken Avenger", weight = 500, type = "item", image = "chickenburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chicken burger with your beloved crispy chicken!"},
chickenburgerspicy = {name = "chickenburgerspicy", label = "Loaded Spicy Chicken Avenger", weight = 500, type = "item", image = "chickenburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
fishburger = {name = "fishburger", label = "Ocean Catch Burger", weight = 500, type = "item", image = "fishburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fish burger with your beloved freshly caught and fried fish!"},
obeseburger = {name = "obeseburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "obeseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!"},
steakburger = {name = "steakburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "steakburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?"},
reverseburger = {name = "reverseburger", label = "Reverse Burger", weight = 450, type = "item", image = "reverseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Flip tradition on its head and try this amazing reverse burger where salad replaced buns!"},
burgershotsandwich = {name = "burgershotsandwich", label = "Sunrise Ham Melt", weight = 400, type = "item", image = "burgershotsandwich.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
-- Other Items
cleansponge = {name = "cleansponge", label = "Clean Sponge", weight = 50, type = "item", image = "cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
dirtysponge = {name = "dirtysponge", label = "Dirty Sponge", weight = 50, type = "item", image = "dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
cleancup = {name = "cleancup", label = "Clean Cup", weight = 50, type = "item", image = "cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled to the brim!"},
dirtycup = {name = "dirtycup", label = "Dirty Cup", weight = 50, type = "item", image = "dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup which needs to be cleaned!"},
burgershotfoodtray = {name = "burgershotfoodtray", label = "Food Tray", weight = 200, type = "item", image = "burgershotfoodtray.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Food tray from burgershot."},
burgershotfoodtrayempty = {name = "burgershotfoodtrayempty", label = "Empty Food Tray", weight = 100, type = "item", image = "burgershotfoodtrayempty.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Empty food tray from burgershot."},
qs
Add the following into:
qs-inventory\shared\items.lua
-- Other
['salt'] = {['name'] = 'salt', ['label'] = 'Salt', ['weight'] = 200, ['type'] = 'item', ['image'] = 'salt.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cooking salt!'},
['burgershotdrinkcup'] = {['name'] = 'burgershotdrinkcup', ['label'] = 'Empty Drinking Cup', ['weight'] = 50, ['type'] = 'item', ['image'] = 'burgershotdrinkcup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burgershot empty drinking cup.'},
['ice'] = {['name'] = 'ice', ['label'] = 'Ice', ['weight'] = 500, ['type'] = 'item', ['image'] = 'ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ice ready to cool your drink!'},
['butter'] = {['name'] = 'butter', ['label'] = 'Butter', ['weight'] = 250, ['type'] = 'item', ['image'] = 'butter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Butter for cooking.'},
['colasyrup'] = {['name'] = 'colasyrup', ['label'] = 'eCola Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'colasyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious cola drink!'},
['colalightsyrup'] = {['name'] = 'colalightsyrup', ['label'] = 'eCola Light Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'colalightsyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious light cola drink!'},
['sprunksyrup'] = {['name'] = 'sprunksyrup', ['label'] = 'Sprunk Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'sprunksyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious sprunk drink!'},
['orang_o_tangsyrup'] = {['name'] = 'orang_o_tangsyrup', ['label'] = 'Orang O Tang Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'orang_o_tangsyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious orang o tang drink!'},
['ketchup'] = {['name'] = 'ketchup', ['label'] = 'Ketchup', ['weight'] = 500, ['type'] = 'item', ['image'] = 'ketchup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Normal ketchup.'},
-- Cutting Table
['rawtomato'] = {['name'] = 'rawtomato', ['label'] = 'Tomato', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawtomato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juicy tomato ready to be sliced!'},
['slicedtomato'] = {['name'] = 'slicedtomato', ['label'] = 'Sliced Tomato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedtomato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juicy tomato slices ready to be eaten!'},
['rawsalad'] = {['name'] = 'rawsalad', ['label'] = 'Salad', ['weight'] = 150, ['type'] = 'item', ['image'] = 'rawsalad.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Salad ready to be sliced!'},
['slicedsalad'] = {['name'] = 'slicedsalad', ['label'] = 'Sliced Salad', ['weight'] = 75, ['type'] = 'item', ['image'] = 'slicedsalad.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Salad slices ready to be eaten!'},
['rawcucumber'] = {['name'] = 'rawcucumber', ['label'] = 'Cucumber', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cucumber ready to be cut!'},
['slicedcucumber'] = {['name'] = 'slicedcucumber', ['label'] = 'Sliced Cucumber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced cucumber ready to be put on a burger and eaten!'},
['rawonion'] = {['name'] = 'rawonion', ['label'] = 'Onion', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Onion ready to be cut!'},
['slicedonion'] = {['name'] = 'slicedonion', ['label'] = 'Sliced Onion', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced onion ready to be put on a burger and eaten!'},
['rawchillipepper'] = {['name'] = 'rawchillipepper', ['label'] = 'Chilli Pepper', ['weight'] = 50, ['type'] = 'item', ['image'] = 'rawchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chilli pepper ready to be cut!'},
['slicedchillipepper'] = {['name'] = 'slicedchillipepper', ['label'] = 'Sliced Chilli Pepper', ['weight'] = 25, ['type'] = 'item', ['image'] = 'slicedchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced chilli pepper ready to be put on a burger and eaten!'},
['rawcheese'] = {['name'] = 'rawcheese', ['label'] = 'Cheese', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawcheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cheese ready to be cut!'},
['slicedcheese'] = {['name'] = 'slicedcheese', ['label'] = 'Sliced Cheese', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedcheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced cheese ready to be put on a burger and eaten!'},
['rawham'] = {['name'] = 'rawham', ['label'] = 'Ham', ['weight'] = 500, ['type'] = 'item', ['image'] = 'rawham.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ham ready to be cut!'},
['slicedham'] = {['name'] = 'slicedham', ['label'] = 'Sliced Ham', ['weight'] = 250, ['type'] = 'item', ['image'] = 'slicedham.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced ham ready to be put on a burger and eaten!'},
['rawbacon'] = {['name'] = 'rawbacon', ['label'] = 'Bacon', ['weight'] = 300, ['type'] = 'item', ['image'] = 'rawbacon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bacon ready to be cut!'},
['slicedbacon'] = {['name'] = 'slicedbacon', ['label'] = 'Sliced Bacon', ['weight'] = 150, ['type'] = 'item', ['image'] = 'slicedbacon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced bacon ready to be put on a sandwich or grilled and eaten!'},
['rawsandwichbread'] = {['name'] = 'rawsandwichbread', ['label'] = 'Sandwich Bread', ['weight'] = 400, ['type'] = 'item', ['image'] = 'rawsandwichbread.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sandwich Bread ready to be cut!'},
['slicedsandwichbread'] = {['name'] = 'slicedsandwichbread', ['label'] = 'Sliced Sandwich Bread', ['weight'] = 200, ['type'] = 'item', ['image'] = 'slicedsandwichbread.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced sandwich bread ready to be put on a burger and eaten!'},
['rawburgerbun'] = {['name'] = 'rawburgerbun', ['label'] = 'Burger Bun', ['weight'] = 250, ['type'] = 'item', ['image'] = 'rawburgerbun.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burger bun ready to be cut in half!'},
['slicedburgerbun'] = {['name'] = 'slicedburgerbun', ['label'] = 'Sliced Burger Bun', ['weight'] = 125, ['type'] = 'item', ['image'] = 'slicedburgerbun.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced burger bun ready to be grilled!'},
-- Frier
['frozenfries'] = {['name'] = 'frozenfries', ['label'] = 'Frozen Fries', ['weight'] = 500, ['type'] = 'item', ['image'] = 'frozenfries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Frozen fries ready to be fried!'},
['friedfries'] = {['name'] = 'friedfries', ['label'] = 'Fries', ['weight'] = 250, ['type'] = 'item', ['image'] = 'friedfries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fries ready to be eaten!'},
['friedonionring'] = {['name'] = 'friedonionring', ['label'] = 'Onion Ring', ['weight'] = 150, ['type'] = 'item', ['image'] = 'friedonionring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Onion ring ready to be eaten!'},
['friedmozzarellastick'] = {['name'] = 'friedmozzarellastick', ['label'] = 'Fried Mozzarella Stick', ['weight'] = 100, ['type'] = 'item', ['image'] = 'friedmozzarellastick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried mozzarella stick ready to be eaten!'},
['rawchickenstrip'] = {['name'] = 'rawchickenstrip', ['label'] = 'Raw Chicken', ['weight'] = 300, ['type'] = 'item', ['image'] = 'rawchickenstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw chicken ready to be fried!'},
['friedchickenstrip'] = {['name'] = 'friedchickenstrip', ['label'] = 'Fried Chicken', ['weight'] = 150, ['type'] = 'item', ['image'] = 'friedchickenstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried chicken ready to be put into a burger and eaten!'},
['rawfishstrip'] = {['name'] = 'rawfishstrip', ['label'] = 'Raw Fish', ['weight'] = 300, ['type'] = 'item', ['image'] = 'rawfishstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw fish ready to be fried!'},
['friedfishstrip'] = {['name'] = 'friedfishstrip', ['label'] = 'Fried Fish', ['weight'] = 150, ['type'] = 'item', ['image'] = 'friedfishstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried fish ready to be put into a burger and eaten!'},
-- Grill
['frozenburgermeat'] = {['name'] = 'frozenburgermeat', ['label'] = 'Frozen Burger Meat', ['weight'] = 400, ['type'] = 'item', ['image'] = 'frozenburgermeat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Frozen burger meat ready to be grilled!'},
['grilledburgermeat'] = {['name'] = 'grilledburgermeat', ['label'] = 'Grilled Burger Meat', ['weight'] = 200, ['type'] = 'item', ['image'] = 'grilledburgermeat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burger meat ready to be put into a burger and eaten!'},
['grilledbacon'] = {['name'] = 'grilledbacon', ['label'] = 'Grilled Bacon', ['weight'] = 150, ['type'] = 'item', ['image'] = 'grilledbacon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burger bacon ready to be put into a burger and eaten!'},
['rawsteak'] = {['name'] = 'rawsteak', ['label'] = 'Raw Steak', ['weight'] = 500, ['type'] = 'item', ['image'] = 'rawsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw steak ready to be grilled!'},
['grilledsteak'] = {['name'] = 'grilledsteak', ['label'] = 'Grilled Steak', ['weight'] = 250, ['type'] = 'item', ['image'] = 'grilledsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled steak ready to be put into a burger and eaten!'},
['rawegg'] = {['name'] = 'rawegg', ['label'] = 'Raw Egg', ['weight'] = 50, ['type'] = 'item', ['image'] = 'rawegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Egg ready to be grilled!'},
['friedegg'] = {['name'] = 'friedegg', ['label'] = 'Fried Egg', ['weight'] = 30, ['type'] = 'item', ['image'] = 'friedegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried egg ready to be put into a burger and eaten!'},
['grilledburgerbun'] = {['name'] = 'grilledburgerbun', ['label'] = 'Grilled Burger Bun', ['weight'] = 250, ['type'] = 'item', ['image'] = 'grilledburgerbun.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled burger bun ready to be filled!'},
-- Drinks
['burgershotcola'] = {['name'] = 'burgershotcola', ['label'] = 'eCola', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotcola.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'eCola from burgershot.'},
['burgershotcolalight'] = {['name'] = 'burgershotcolalight', ['label'] = 'eCola Light', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotcolalight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'eCola light from burgershot.'},
['burgershotsprunk'] = {['name'] = 'burgershotsprunk', ['label'] = 'Sprunk', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotsprunk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sprunk from burgershot.'},
['burgershotorang_o_tang'] = {['name'] = 'burgershotorang_o_tang', ['label'] = 'Orang O Tang', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotorang_o_tang.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Orang o tang from burgershot.'},
['burgershotcolaslushie'] = {['name'] = 'burgershotcolaslushie', ['label'] = 'eCola Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotcolaslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite eCola.'},
['burgershotcolalightslushie'] = {['name'] = 'burgershotcolalightslushie', ['label'] = 'eCola Light Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotcolalightslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite eCola light.'},
['burgershotsprunkslushie'] = {['name'] = 'burgershotsprunkslushie', ['label'] = 'Sprunk Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotsprunkslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite sprunk drink.'},
['burgershotorang_o_tangslushie'] = {['name'] = 'burgershotorang_o_tangslushie', ['label'] = 'Orang O Tang Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotorang_o_tangslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite orang o tang drink.'},
-- Burgers
['classicburger'] = {['name'] = 'classicburger', ['label'] = 'GrillMaster Classic Burger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'classicburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Classic burger with your favorite flavors!'},
['classicburgerspicy'] = {['name'] = 'classicburgerspicy', ['label'] = 'GrillMaster Spicy Classic Burger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'classicburgerspicy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy classic burger with your favorite flavors!'},
['chickenburger'] = {['name'] = 'chickenburger', ['label'] = 'Loaded Chicken Avenger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'chickenburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chicken burger with your beloved crispy chicken!'},
['chickenburgerspicy'] = {['name'] = 'chickenburgerspicy', ['label'] = 'Loaded Spicy Chicken Avenger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'chickenburgerspicy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy chicken burger with your beloved crispy chicken!'},
['fishburger'] = {['name'] = 'fishburger', ['label'] = 'Ocean Catch Burger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'fishburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fish burger with your beloved freshly caught and fried fish!'},
['obeseburger'] = {['name'] = 'obeseburger', ['label'] = 'The Cardiac Crusher', ['weight'] = 700, ['type'] = 'item', ['image'] = 'obeseburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!'},
['steakburger'] = {['name'] = 'steakburger', ['label'] = 'The Cardiac Crusher', ['weight'] = 700, ['type'] = 'item', ['image'] = 'steakburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?'},
['reverseburger'] = {['name'] = 'reverseburger', ['label'] = 'Reverse Burger', ['weight'] = 450, ['type'] = 'item', ['image'] = 'reverseburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Flip tradition on its head and try this amazing reverse burger where salad replaced buns!'},
['burgershotsandwich'] = {['name'] = 'burgershotsandwich', ['label'] = 'Sunrise Ham Melt', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotsandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy chicken burger with your beloved crispy chicken!'},
-- Other Items
['cleansponge'] = {['name'] = 'cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 50, ['type'] = 'item', ['image'] = 'cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['dirtysponge'] = {['name'] = 'dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 50, ['type'] = 'item', ['image'] = 'dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['cleancup'] = {['name'] = 'cleancup', ['label'] = 'Clean Cup', ['weight'] = 50, ['type'] = 'item', ['image'] = 'cleancup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean cup ready to be filled to the brim!'},
['dirtycup'] = {['name'] = 'dirtycup', ['label'] = 'Dirty Cup', ['weight'] = 50, ['type'] = 'item', ['image'] = 'dirtycup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cup which needs to be cleaned!'},
['burgershotfoodtray'] = {['name'] = 'burgershotfoodtray', ['label'] = 'Food Tray', ['weight'] = 200, ['type'] = 'item', ['image'] = 'burgershotfoodtray.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Food tray from burgershot.'},
['burgershotfoodtrayempty'] = {['name'] = 'burgershotfoodtrayempty', ['label'] = 'Empty Food Tray', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershotfoodtrayempty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Empty food tray from burgershot.'},
ps
Add the following into:
qb-core\shared\items.lua
-- Other
salt = {name = "salt", label = "Salt", weight = 200, type = "item", image = "salt.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking salt!"},
burgershotdrinkcup = {name = "burgershotdrinkcup", label = "Empty Drinking Cup", weight = 50, type = "item", image = "burgershotdrinkcup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burgershot empty drinking cup."},
ice = {name = "ice", label = "Ice", weight = 500, type = "item", image = "ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
butter = {name = "butter", label = "Butter", weight = 250, type = "item", image = "butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Butter for cooking."},
colasyrup = {name = "colasyrup", label = "eCola Syrup", weight = 1000, type = "item", image = "colasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious cola drink!"},
colalightsyrup = {name = "colalightsyrup", label = "eCola Light Syrup", weight = 1000, type = "item", image = "colalightsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious light cola drink!"},
sprunksyrup = {name = "sprunksyrup", label = "Sprunk Syrup", weight = 1000, type = "item", image = "sprunksyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious sprunk drink!"},
orang_o_tangsyrup = {name = "orang_o_tangsyrup", label = "Orang O Tang Syrup", weight = 1000, type = "item", image = "orang_o_tangsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious orang o tang drink!"},
ketchup = {name = "ketchup", label = "Ketchup", weight = 500, type = "item", image = "ketchup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Normal ketchup."},
-- Cutting Table
rawtomato = {name = "rawtomato", label = "Tomato", weight = 200, type = "item", image = "rawtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato ready to be sliced!"},
slicedtomato = {name = "slicedtomato", label = "Sliced Tomato", weight = 100, type = "item", image = "slicedtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato slices ready to be eaten!"},
rawsalad = {name = "rawsalad", label = "Salad", weight = 150, type = "item", image = "rawsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad ready to be sliced!"},
slicedsalad = {name = "slicedsalad", label = "Sliced Salad", weight = 75, type = "item", image = "slicedsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad slices ready to be eaten!"},
rawcucumber = {name = "rawcucumber", label = "Cucumber", weight = 200, type = "item", image = "rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
slicedcucumber = {name = "slicedcucumber", label = "Sliced Cucumber", weight = 100, type = "item", image = "slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
rawonion = {name = "rawonion", label = "Onion", weight = 200, type = "item", image = "rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut!"},
slicedonion = {name = "slicedonion", label = "Sliced Onion", weight = 100, type = "item", image = "slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put on a burger and eaten!"},
rawchillipepper = {name = "rawchillipepper", label = "Chilli Pepper", weight = 50, type = "item", image = "rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut!"},
slicedchillipepper = {name = "slicedchillipepper", label = "Sliced Chilli Pepper", weight = 25, type = "item", image = "slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be put on a burger and eaten!"},
rawcheese = {name = "rawcheese", label = "Cheese", weight = 200, type = "item", image = "rawcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cheese ready to be cut!"},
slicedcheese = {name = "slicedcheese", label = "Sliced Cheese", weight = 100, type = "item", image = "slicedcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cheese ready to be put on a burger and eaten!"},
rawham = {name = "rawham", label = "Ham", weight = 500, type = "item", image = "rawham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ham ready to be cut!"},
slicedham = {name = "slicedham", label = "Sliced Ham", weight = 250, type = "item", image = "slicedham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced ham ready to be put on a burger and eaten!"},
rawbacon = {name = "rawbacon", label = "Bacon", weight = 300, type = "item", image = "rawbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bacon ready to be cut!"},
slicedbacon = {name = "slicedbacon", label = "Sliced Bacon", weight = 150, type = "item", image = "slicedbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced bacon ready to be put on a sandwich or grilled and eaten!"},
rawsandwichbread = {name = "rawsandwichbread", label = "Sandwich Bread", weight = 400, type = "item", image = "rawsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sandwich Bread ready to be cut!"},
slicedsandwichbread = {name = "slicedsandwichbread", label = "Sliced Sandwich Bread", weight = 200, type = "item", image = "slicedsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced sandwich bread ready to be put on a burger and eaten!"},
rawburgerbun = {name = "rawburgerbun", label = "Burger Bun", weight = 250, type = "item", image = "rawburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bun ready to be cut in half!"},
slicedburgerbun = {name = "slicedburgerbun", label = "Sliced Burger Bun", weight = 125, type = "item", image = "slicedburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced burger bun ready to be grilled!"},
-- Frier
frozenfries = {name = "frozenfries", label = "Frozen Fries", weight = 500, type = "item", image = "frozenfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen fries ready to be fried!"},
friedfries = {name = "friedfries", label = "Fries", weight = 250, type = "item", image = "friedfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fries ready to be eaten!"},
friedonionring = {name = "friedonionring", label = "Onion Ring", weight = 150, type = "item", image = "friedonionring.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ring ready to be eaten!"},
friedmozzarellastick = {name = "friedmozzarellastick", label = "Fried Mozzarella Stick", weight = 100, type = "item", image = "friedmozzarellastick.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried mozzarella stick ready to be eaten!"},
rawchickenstrip = {name = "rawchickenstrip", label = "Raw Chicken", weight = 300, type = "item", image = "rawchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken ready to be fried!"},
friedchickenstrip = {name = "friedchickenstrip", label = "Fried Chicken", weight = 150, type = "item", image = "friedchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried chicken ready to be put into a burger and eaten!"},
rawfishstrip = {name = "rawfishstrip", label = "Raw Fish", weight = 300, type = "item", image = "rawfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw fish ready to be fried!"},
friedfishstrip = {name = "friedfishstrip", label = "Fried Fish", weight = 150, type = "item", image = "friedfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried fish ready to be put into a burger and eaten!"},
-- Grill
frozenburgermeat = {name = "frozenburgermeat", label = "Frozen Burger Meat", weight = 400, type = "item", image = "frozenburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen burger meat ready to be grilled!"},
grilledburgermeat = {name = "grilledburgermeat", label = "Grilled Burger Meat", weight = 200, type = "item", image = "grilledburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger meat ready to be put into a burger and eaten!"},
grilledbacon = {name = "grilledbacon", label = "Grilled Bacon", weight = 150, type = "item", image = "grilledbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bacon ready to be put into a burger and eaten!"},
rawsteak = {name = "rawsteak", label = "Raw Steak", weight = 500, type = "item", image = "rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled!"},
grilledsteak = {name = "grilledsteak", label = "Grilled Steak", weight = 250, type = "item", image = "grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be put into a burger and eaten!"},
rawegg = {name = "rawegg", label = "Raw Egg", weight = 50, type = "item", image = "rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Egg ready to be grilled!"},
friedegg = {name = "friedegg", label = "Fried Egg", weight = 30, type = "item", image = "friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten!"},
grilledburgerbun = {name = "grilledburgerbun", label = "Grilled Burger Bun", weight = 250, type = "item", image = "grilledburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled burger bun ready to be filled!"},
-- Drinks
burgershotcola = {name = "burgershotcola", label = "eCola", weight = 350, type = "item", image = "burgershotcola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola from burgershot."},
burgershotcolalight = {name = "burgershotcolalight", label = "eCola Light", weight = 350, type = "item", image = "burgershotcolalight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola light from burgershot."},
burgershotsprunk = {name = "burgershotsprunk", label = "Sprunk", weight = 350, type = "item", image = "burgershotsprunk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sprunk from burgershot."},
burgershotorang_o_tang = {name = "burgershotorang_o_tang", label = "Orang O Tang", weight = 350, type = "item", image = "burgershotorang_o_tang.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Orang o tang from burgershot."},
burgershotcolaslushie = {name = "burgershotcolaslushie", label = "eCola Slushie", weight = 400, type = "item", image = "burgershotcolaslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola."},
burgershotcolalightslushie = {name = "burgershotcolalightslushie", label = "eCola Light Slushie", weight = 400, type = "item", image = "burgershotcolalightslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola light."},
burgershotsprunkslushie = {name = "burgershotsprunkslushie", label = "Sprunk Slushie", weight = 400, type = "item", image = "burgershotsprunkslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite sprunk drink."},
burgershotorang_o_tangslushie = {name = "burgershotorang_o_tangslushie", label = "Orang O Tang Slushie", weight = 400, type = "item", image = "burgershotorang_o_tangslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite orang o tang drink."},
-- Burgers
classicburger = {name = "classicburger", label = "GrillMaster Classic Burger", weight = 500, type = "item", image = "classicburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic burger with your favorite flavors!"},
classicburgerspicy = {name = "classicburgerspicy", label = "GrillMaster Spicy Classic Burger", weight = 500, type = "item", image = "classicburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy classic burger with your favorite flavors!"},
chickenburger = {name = "chickenburger", label = "Loaded Chicken Avenger", weight = 500, type = "item", image = "chickenburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chicken burger with your beloved crispy chicken!"},
chickenburgerspicy = {name = "chickenburgerspicy", label = "Loaded Spicy Chicken Avenger", weight = 500, type = "item", image = "chickenburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
fishburger = {name = "fishburger", label = "Ocean Catch Burger", weight = 500, type = "item", image = "fishburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fish burger with your beloved freshly caught and fried fish!"},
obeseburger = {name = "obeseburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "obeseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!"},
steakburger = {name = "steakburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "steakburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?"},
reverseburger = {name = "reverseburger", label = "Reverse Burger", weight = 450, type = "item", image = "reverseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Flip tradition on its head and try this amazing reverse burger where salad replaced buns!"},
burgershotsandwich = {name = "burgershotsandwich", label = "Sunrise Ham Melt", weight = 400, type = "item", image = "burgershotsandwich.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
-- Other Items
cleansponge = {name = "cleansponge", label = "Clean Sponge", weight = 50, type = "item", image = "cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
dirtysponge = {name = "dirtysponge", label = "Dirty Sponge", weight = 50, type = "item", image = "dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
cleancup = {name = "cleancup", label = "Clean Cup", weight = 50, type = "item", image = "cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled to the brim!"},
dirtycup = {name = "dirtycup", label = "Dirty Cup", weight = 50, type = "item", image = "dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup which needs to be cleaned!"},
burgershotfoodtray = {name = "burgershotfoodtray", label = "Food Tray", weight = 200, type = "item", image = "burgershotfoodtray.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Food tray from burgershot."},
burgershotfoodtrayempty = {name = "burgershotfoodtrayempty", label = "Empty Food Tray", weight = 100, type = "item", image = "burgershotfoodtrayempty.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Empty food tray from burgershot."},
codem
Add the following into:
codem-inventory\config\itemlist.lua
-- Other
salt = {name = "salt", label = "Salt", weight = 200, type = "item", image = "salt.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking salt!"},
burgershotdrinkcup = {name = "burgershotdrinkcup", label = "Empty Drinking Cup", weight = 50, type = "item", image = "burgershotdrinkcup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burgershot empty drinking cup."},
ice = {name = "ice", label = "Ice", weight = 500, type = "item", image = "ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
butter = {name = "butter", label = "Butter", weight = 250, type = "item", image = "butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Butter for cooking."},
colasyrup = {name = "colasyrup", label = "eCola Syrup", weight = 1000, type = "item", image = "colasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious cola drink!"},
colalightsyrup = {name = "colalightsyrup", label = "eCola Light Syrup", weight = 1000, type = "item", image = "colalightsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious light cola drink!"},
sprunksyrup = {name = "sprunksyrup", label = "Sprunk Syrup", weight = 1000, type = "item", image = "sprunksyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious sprunk drink!"},
orang_o_tangsyrup = {name = "orang_o_tangsyrup", label = "Orang O Tang Syrup", weight = 1000, type = "item", image = "orang_o_tangsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious orang o tang drink!"},
ketchup = {name = "ketchup", label = "Ketchup", weight = 500, type = "item", image = "ketchup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Normal ketchup."},
-- Cutting Table
rawtomato = {name = "rawtomato", label = "Tomato", weight = 200, type = "item", image = "rawtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato ready to be sliced!"},
slicedtomato = {name = "slicedtomato", label = "Sliced Tomato", weight = 100, type = "item", image = "slicedtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato slices ready to be eaten!"},
rawsalad = {name = "rawsalad", label = "Salad", weight = 150, type = "item", image = "rawsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad ready to be sliced!"},
slicedsalad = {name = "slicedsalad", label = "Sliced Salad", weight = 75, type = "item", image = "slicedsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad slices ready to be eaten!"},
rawcucumber = {name = "rawcucumber", label = "Cucumber", weight = 200, type = "item", image = "rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
slicedcucumber = {name = "slicedcucumber", label = "Sliced Cucumber", weight = 100, type = "item", image = "slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
rawonion = {name = "rawonion", label = "Onion", weight = 200, type = "item", image = "rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut!"},
slicedonion = {name = "slicedonion", label = "Sliced Onion", weight = 100, type = "item", image = "slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put on a burger and eaten!"},
rawchillipepper = {name = "rawchillipepper", label = "Chilli Pepper", weight = 50, type = "item", image = "rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut!"},
slicedchillipepper = {name = "slicedchillipepper", label = "Sliced Chilli Pepper", weight = 25, type = "item", image = "slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be put on a burger and eaten!"},
rawcheese = {name = "rawcheese", label = "Cheese", weight = 200, type = "item", image = "rawcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cheese ready to be cut!"},
slicedcheese = {name = "slicedcheese", label = "Sliced Cheese", weight = 100, type = "item", image = "slicedcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cheese ready to be put on a burger and eaten!"},
rawham = {name = "rawham", label = "Ham", weight = 500, type = "item", image = "rawham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ham ready to be cut!"},
slicedham = {name = "slicedham", label = "Sliced Ham", weight = 250, type = "item", image = "slicedham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced ham ready to be put on a burger and eaten!"},
rawbacon = {name = "rawbacon", label = "Bacon", weight = 300, type = "item", image = "rawbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bacon ready to be cut!"},
slicedbacon = {name = "slicedbacon", label = "Sliced Bacon", weight = 150, type = "item", image = "slicedbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced bacon ready to be put on a sandwich or grilled and eaten!"},
rawsandwichbread = {name = "rawsandwichbread", label = "Sandwich Bread", weight = 400, type = "item", image = "rawsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sandwich Bread ready to be cut!"},
slicedsandwichbread = {name = "slicedsandwichbread", label = "Sliced Sandwich Bread", weight = 200, type = "item", image = "slicedsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced sandwich bread ready to be put on a burger and eaten!"},
rawburgerbun = {name = "rawburgerbun", label = "Burger Bun", weight = 250, type = "item", image = "rawburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bun ready to be cut in half!"},
slicedburgerbun = {name = "slicedburgerbun", label = "Sliced Burger Bun", weight = 125, type = "item", image = "slicedburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced burger bun ready to be grilled!"},
-- Frier
frozenfries = {name = "frozenfries", label = "Frozen Fries", weight = 500, type = "item", image = "frozenfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen fries ready to be fried!"},
friedfries = {name = "friedfries", label = "Fries", weight = 250, type = "item", image = "friedfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fries ready to be eaten!"},
friedonionring = {name = "friedonionring", label = "Onion Ring", weight = 150, type = "item", image = "friedonionring.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ring ready to be eaten!"},
friedmozzarellastick = {name = "friedmozzarellastick", label = "Fried Mozzarella Stick", weight = 100, type = "item", image = "friedmozzarellastick.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried mozzarella stick ready to be eaten!"},
rawchickenstrip = {name = "rawchickenstrip", label = "Raw Chicken", weight = 300, type = "item", image = "rawchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken ready to be fried!"},
friedchickenstrip = {name = "friedchickenstrip", label = "Fried Chicken", weight = 150, type = "item", image = "friedchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried chicken ready to be put into a burger and eaten!"},
rawfishstrip = {name = "rawfishstrip", label = "Raw Fish", weight = 300, type = "item", image = "rawfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw fish ready to be fried!"},
friedfishstrip = {name = "friedfishstrip", label = "Fried Fish", weight = 150, type = "item", image = "friedfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried fish ready to be put into a burger and eaten!"},
-- Grill
frozenburgermeat = {name = "frozenburgermeat", label = "Frozen Burger Meat", weight = 400, type = "item", image = "frozenburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen burger meat ready to be grilled!"},
grilledburgermeat = {name = "grilledburgermeat", label = "Grilled Burger Meat", weight = 200, type = "item", image = "grilledburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger meat ready to be put into a burger and eaten!"},
grilledbacon = {name = "grilledbacon", label = "Grilled Bacon", weight = 150, type = "item", image = "grilledbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bacon ready to be put into a burger and eaten!"},
rawsteak = {name = "rawsteak", label = "Raw Steak", weight = 500, type = "item", image = "rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled!"},
grilledsteak = {name = "grilledsteak", label = "Grilled Steak", weight = 250, type = "item", image = "grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be put into a burger and eaten!"},
rawegg = {name = "rawegg", label = "Raw Egg", weight = 50, type = "item", image = "rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Egg ready to be grilled!"},
friedegg = {name = "friedegg", label = "Fried Egg", weight = 30, type = "item", image = "friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten!"},
grilledburgerbun = {name = "grilledburgerbun", label = "Grilled Burger Bun", weight = 250, type = "item", image = "grilledburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled burger bun ready to be filled!"},
-- Drinks
burgershotcola = {name = "burgershotcola", label = "eCola", weight = 350, type = "item", image = "burgershotcola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola from burgershot."},
burgershotcolalight = {name = "burgershotcolalight", label = "eCola Light", weight = 350, type = "item", image = "burgershotcolalight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola light from burgershot."},
burgershotsprunk = {name = "burgershotsprunk", label = "Sprunk", weight = 350, type = "item", image = "burgershotsprunk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sprunk from burgershot."},
burgershotorang_o_tang = {name = "burgershotorang_o_tang", label = "Orang O Tang", weight = 350, type = "item", image = "burgershotorang_o_tang.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Orang o tang from burgershot."},
burgershotcolaslushie = {name = "burgershotcolaslushie", label = "eCola Slushie", weight = 400, type = "item", image = "burgershotcolaslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola."},
burgershotcolalightslushie = {name = "burgershotcolalightslushie", label = "eCola Light Slushie", weight = 400, type = "item", image = "burgershotcolalightslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola light."},
burgershotsprunkslushie = {name = "burgershotsprunkslushie", label = "Sprunk Slushie", weight = 400, type = "item", image = "burgershotsprunkslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite sprunk drink."},
burgershotorang_o_tangslushie = {name = "burgershotorang_o_tangslushie", label = "Orang O Tang Slushie", weight = 400, type = "item", image = "burgershotorang_o_tangslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite orang o tang drink."},
-- Burgers
classicburger = {name = "classicburger", label = "GrillMaster Classic Burger", weight = 500, type = "item", image = "classicburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic burger with your favorite flavors!"},
classicburgerspicy = {name = "classicburgerspicy", label = "GrillMaster Spicy Classic Burger", weight = 500, type = "item", image = "classicburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy classic burger with your favorite flavors!"},
chickenburger = {name = "chickenburger", label = "Loaded Chicken Avenger", weight = 500, type = "item", image = "chickenburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chicken burger with your beloved crispy chicken!"},
chickenburgerspicy = {name = "chickenburgerspicy", label = "Loaded Spicy Chicken Avenger", weight = 500, type = "item", image = "chickenburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
fishburger = {name = "fishburger", label = "Ocean Catch Burger", weight = 500, type = "item", image = "fishburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fish burger with your beloved freshly caught and fried fish!"},
obeseburger = {name = "obeseburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "obeseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!"},
steakburger = {name = "steakburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "steakburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?"},
reverseburger = {name = "reverseburger", label = "Reverse Burger", weight = 450, type = "item", image = "reverseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Flip tradition on its head and try this amazing reverse burger where salad replaced buns!"},
burgershotsandwich = {name = "burgershotsandwich", label = "Sunrise Ham Melt", weight = 400, type = "item", image = "burgershotsandwich.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
-- Other Items
cleansponge = {name = "cleansponge", label = "Clean Sponge", weight = 50, type = "item", image = "cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
dirtysponge = {name = "dirtysponge", label = "Dirty Sponge", weight = 50, type = "item", image = "dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
cleancup = {name = "cleancup", label = "Clean Cup", weight = 50, type = "item", image = "cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled to the brim!"},
dirtycup = {name = "dirtycup", label = "Dirty Cup", weight = 50, type = "item", image = "dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup which needs to be cleaned!"},
burgershotfoodtray = {name = "burgershotfoodtray", label = "Food Tray", weight = 200, type = "item", image = "burgershotfoodtray.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Food tray from burgershot."},
burgershotfoodtrayempty = {name = "burgershotfoodtrayempty", label = "Empty Food Tray", weight = 100, type = "item", image = "burgershotfoodtrayempty.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Empty food tray from burgershot."},
core
Add the following into your database:
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`, `desc`) VALUES
-- Other
('salt', 'Salt', 200, 0, 1, 'Cooking salt!'),
('burgershotdrinkcup', 'Empty Drinking Cup', 50, 0, 1, 'Burgershot empty drinking cup.'),
('ice', 'Ice', 500, 0, 1, 'Ice ready to cool your drink!'),
('butter', 'Butter', 250, 0, 1, 'Butter for cooking.'),
('colasyrup', 'eCola Syrup', 1000, 0, 1, 'Syrup from which you can make delicious cola drink!'),
('colalightsyrup', 'eCola Light Syrup', 1000, 0, 1, 'Syrup from which you can make delicious light cola drink!'),
('sprunksyrup', 'Sprunk Syrup', 1000, 0, 1, 'Syrup from which you can make delicious sprunk drink!'),
('orang_o_tangsyrup', 'Orang O Tang Syrup', 1000, 0, 1, 'Syrup from which you can make delicious orang o tang drink!'),
('ketchup', 'Ketchup', 500, 0, 1, 'Normal ketchup.'),
-- Cutting Table
('rawtomato', 'Tomato', 200, 0, 1, 'Juicy tomato ready to be sliced!'),
('slicedtomato', 'Sliced Tomato', 100, 0, 1, 'Juicy tomato slices ready to be eaten!'),
('rawsalad', 'Salad', 150, 0, 1, 'Salad ready to be sliced!'),
('slicedsalad', 'Sliced Salad', 75, 0, 1, 'Salad slices ready to be eaten!'),
('rawcucumber', 'Cucumber', 200, 0, 1, 'Cucumber ready to be cut!'),
('slicedcucumber', 'Sliced Cucumber', 100, 0, 1, 'Sliced cucumber ready to be put on a burger and eaten!'),
('rawonion', 'Onion', 200, 0, 1, 'Onion ready to be cut!'),
('slicedonion', 'Sliced Onion', 100, 0, 1, 'Sliced onion ready to be put on a burger and eaten!'),
('rawchillipepper', 'Chilli Pepper', 50, 0, 1, 'Chilli pepper ready to be cut!'),
('slicedchillipepper', 'Sliced Chilli Pepper', 25, 0, 1, 'Sliced chilli pepper ready to be put on a burger and eaten!'),
('rawcheese', 'Cheese', 200, 0, 1, 'Cheese ready to be cut!'),
('slicedcheese', 'Sliced Cheese', 100, 0, 1, 'Sliced cheese ready to be put on a burger and eaten!'),
('rawham', 'Ham', 500, 0, 1, 'Ham ready to be cut!'),
('slicedham', 'Sliced Ham', 250, 0, 1, 'Sliced ham ready to be put on a burger and eaten!'),
('rawbacon', 'Bacon', 300, 0, 1, 'Bacon ready to be cut!'),
('slicedbacon', 'Sliced Bacon', 150, 0, 1, 'Sliced bacon ready to be put on a sandwich or grilled and eaten!'),
('rawsandwichbread', 'Sandwich Bread', 400, 0, 1, 'Sandwich Bread ready to be cut!'),
('slicedsandwichbread', 'Sliced Sandwich Bread', 200, 0, 1, 'Sliced sandwich bread ready to be put on a burger and eaten!'),
('rawburgerbun', 'Burger Bun', 250, 0, 1, 'Burger bun ready to be cut in half!'),
('slicedburgerbun', 'Sliced Burger Bun', 125, 0, 1, 'Sliced burger bun ready to be grilled!'),
-- Frier
('frozenfries', 'Frozen Fries', 500, 0, 1, 'Frozen fries ready to be fried!'),
('friedfries', 'Fries', 250, 0, 1, 'Fries ready to be eaten!'),
('friedonionring', 'Onion Ring', 150, 0, 1, 'Onion ring ready to be eaten!'),
('friedmozzarellastick', 'Fried Mozzarella Stick', 100, 0, 1, 'Fried mozzarella stick ready to be eaten!'),
('rawchickenstrip', 'Raw Chicken', 300, 0, 1, 'Raw chicken ready to be fried!'),
('friedchickenstrip', 'Fried Chicken', 150, 0, 1, 'Fried chicken ready to be put into a burger and eaten!'),
('rawfishstrip', 'Raw Fish', 300, 0, 1, 'Raw fish ready to be fried!'),
('friedfishstrip', 'Fried Fish', 150, 0, 1, 'Fried fish ready to be put into a burger and eaten!'),
-- Grill
('frozenburgermeat', 'Frozen Burger Meat', 400, 0, 1, 'Frozen burger meat ready to be grilled!'),
('grilledburgermeat', 'Grilled Burger Meat', 200, 0, 1, 'Burger meat ready to be put into a burger and eaten!'),
('grilledbacon', 'Grilled Bacon', 150, 0, 1, 'Burger bacon ready to be put into a burger and eaten!'),
('rawsteak', 'Raw Steak', 500, 0, 1, 'Raw steak ready to be grilled!'),
('grilledsteak', 'Grilled Steak', 250, 0, 1, 'Grilled steak ready to be put into a burger and eaten!'),
('rawegg', 'Raw Egg', 50, 0, 1, 'Egg ready to be grilled!'),
('friedegg', 'Fried Egg', 30, 0, 1, 'Fried egg ready to be put into a burger and eaten!'),
('grilledburgerbun', 'Grilled Burger Bun', 250, 0, 1, 'Grilled burger bun ready to be filled!'),
-- Drinks
('burgershotcola', 'eCola', 350, 0, 1, 'eCola from burgershot.'),
('burgershotcolalight', 'eCola Light', 350, 0, 1, 'eCola light from burgershot.'),
('burgershotsprunk', 'Sprunk', 350, 0, 1, 'Sprunk from burgershot.'),
('burgershotorang_o_tang', 'Orang O Tang', 350, 0, 1, 'Orang o tang from burgershot.'),
('burgershotcolaslushie', 'eCola Slushie', 400, 0, 1, 'Slushie from your favorite eCola.'),
('burgershotcolalightslushie', 'eCola Light Slushie', 400, 0, 1, 'Slushie from your favorite eCola light.'),
('burgershotsprunkslushie', 'Sprunk Slushie', 400, 0, 1, 'Slushie from your favorite sprunk drink.'),
('burgershotorang_o_tangslushie', 'Orang O Tang Slushie', 400, 0, 1, 'Slushie from your favorite orang o tang drink.'),
-- Burgers
('classicburger', 'GrillMaster Classic Burger', 500, 0, 1, 'Classic burger with your favorite flavors!'),
('classicburgerspicy', 'GrillMaster Spicy Classic Burger', 500, 0, 1, 'Spicy classic burger with your favorite flavors!'),
('chickenburger', 'Loaded Chicken Avenger', 500, 0, 1, 'Chicken burger with your beloved crispy chicken!'),
('chickenburgerspicy', 'Loaded Spicy Chicken Avenger', 500, 0, 1, 'Spicy chicken burger with your beloved crispy chicken!'),
('fishburger', 'Ocean Catch Burger', 500, 0, 1, 'Fish burger with your beloved freshly caught and fried fish!'),
('obeseburger', 'The Cardiac Crusher', 700, 0, 1, 'A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!'),
('steakburger', 'The Cardiac Crusher', 700, 0, 1, 'For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?'),
('reverseburger', 'Reverse Burger', 450, 0, 1, 'Flip tradition on its head and try this amazing reverse burger where salad replaced buns!'),
('burgershotsandwich', 'Sunrise Ham Melt', 400, 0, 1, 'Spicy chicken burger with your beloved crispy chicken!'),
-- Other Items
('cleansponge', 'Clean Sponge', 50, 0, 1, 'Clean sponge which is ready for some cleaning!'),
('dirtysponge', 'Dirty Sponge', 50, 0, 1, 'Dirty sponge which needs to be cleaned!'),
('cleancup', 'Clean Cup', 50, 0, 1, 'Clean cup ready to be filled to the brim!'),
('dirtycup', 'Dirty Cup', 50, 0, 1, 'Dirty cup which needs to be cleaned!'),
('burgershotfoodtray', 'Food Tray', 200, 0, 1, 'Food tray from burgershot.'),
('burgershotfoodtrayempty', 'Empty Food Tray', 100, 0, 1, 'Empty food tray from burgershot.');
origen
Add the following into:
origen_inventory\config\items.lua
-- Other
['salt'] = {['name'] = 'salt', ['label'] = 'Salt', ['weight'] = 200, ['type'] = 'item', ['image'] = 'salt.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cooking salt!'},
['burgershotdrinkcup'] = {['name'] = 'burgershotdrinkcup', ['label'] = 'Empty Drinking Cup', ['weight'] = 50, ['type'] = 'item', ['image'] = 'burgershotdrinkcup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burgershot empty drinking cup.'},
['ice'] = {['name'] = 'ice', ['label'] = 'Ice', ['weight'] = 500, ['type'] = 'item', ['image'] = 'ice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ice ready to cool your drink!'},
['butter'] = {['name'] = 'butter', ['label'] = 'Butter', ['weight'] = 250, ['type'] = 'item', ['image'] = 'butter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Butter for cooking.'},
['colasyrup'] = {['name'] = 'colasyrup', ['label'] = 'eCola Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'colasyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious cola drink!'},
['colalightsyrup'] = {['name'] = 'colalightsyrup', ['label'] = 'eCola Light Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'colalightsyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious light cola drink!'},
['sprunksyrup'] = {['name'] = 'sprunksyrup', ['label'] = 'Sprunk Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'sprunksyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious sprunk drink!'},
['orang_o_tangsyrup'] = {['name'] = 'orang_o_tangsyrup', ['label'] = 'Orang O Tang Syrup', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'orang_o_tangsyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Syrup from which you can make delicious orang o tang drink!'},
['ketchup'] = {['name'] = 'ketchup', ['label'] = 'Ketchup', ['weight'] = 500, ['type'] = 'item', ['image'] = 'ketchup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Normal ketchup.'},
-- Cutting Table
['rawtomato'] = {['name'] = 'rawtomato', ['label'] = 'Tomato', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawtomato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juicy tomato ready to be sliced!'},
['slicedtomato'] = {['name'] = 'slicedtomato', ['label'] = 'Sliced Tomato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedtomato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Juicy tomato slices ready to be eaten!'},
['rawsalad'] = {['name'] = 'rawsalad', ['label'] = 'Salad', ['weight'] = 150, ['type'] = 'item', ['image'] = 'rawsalad.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Salad ready to be sliced!'},
['slicedsalad'] = {['name'] = 'slicedsalad', ['label'] = 'Sliced Salad', ['weight'] = 75, ['type'] = 'item', ['image'] = 'slicedsalad.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Salad slices ready to be eaten!'},
['rawcucumber'] = {['name'] = 'rawcucumber', ['label'] = 'Cucumber', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cucumber ready to be cut!'},
['slicedcucumber'] = {['name'] = 'slicedcucumber', ['label'] = 'Sliced Cucumber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced cucumber ready to be put on a burger and eaten!'},
['rawonion'] = {['name'] = 'rawonion', ['label'] = 'Onion', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Onion ready to be cut!'},
['slicedonion'] = {['name'] = 'slicedonion', ['label'] = 'Sliced Onion', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced onion ready to be put on a burger and eaten!'},
['rawchillipepper'] = {['name'] = 'rawchillipepper', ['label'] = 'Chilli Pepper', ['weight'] = 50, ['type'] = 'item', ['image'] = 'rawchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chilli pepper ready to be cut!'},
['slicedchillipepper'] = {['name'] = 'slicedchillipepper', ['label'] = 'Sliced Chilli Pepper', ['weight'] = 25, ['type'] = 'item', ['image'] = 'slicedchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced chilli pepper ready to be put on a burger and eaten!'},
['rawcheese'] = {['name'] = 'rawcheese', ['label'] = 'Cheese', ['weight'] = 200, ['type'] = 'item', ['image'] = 'rawcheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cheese ready to be cut!'},
['slicedcheese'] = {['name'] = 'slicedcheese', ['label'] = 'Sliced Cheese', ['weight'] = 100, ['type'] = 'item', ['image'] = 'slicedcheese.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced cheese ready to be put on a burger and eaten!'},
['rawham'] = {['name'] = 'rawham', ['label'] = 'Ham', ['weight'] = 500, ['type'] = 'item', ['image'] = 'rawham.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Ham ready to be cut!'},
['slicedham'] = {['name'] = 'slicedham', ['label'] = 'Sliced Ham', ['weight'] = 250, ['type'] = 'item', ['image'] = 'slicedham.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced ham ready to be put on a burger and eaten!'},
['rawbacon'] = {['name'] = 'rawbacon', ['label'] = 'Bacon', ['weight'] = 300, ['type'] = 'item', ['image'] = 'rawbacon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Bacon ready to be cut!'},
['slicedbacon'] = {['name'] = 'slicedbacon', ['label'] = 'Sliced Bacon', ['weight'] = 150, ['type'] = 'item', ['image'] = 'slicedbacon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced bacon ready to be put on a sandwich or grilled and eaten!'},
['rawsandwichbread'] = {['name'] = 'rawsandwichbread', ['label'] = 'Sandwich Bread', ['weight'] = 400, ['type'] = 'item', ['image'] = 'rawsandwichbread.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sandwich Bread ready to be cut!'},
['slicedsandwichbread'] = {['name'] = 'slicedsandwichbread', ['label'] = 'Sliced Sandwich Bread', ['weight'] = 200, ['type'] = 'item', ['image'] = 'slicedsandwichbread.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced sandwich bread ready to be put on a burger and eaten!'},
['rawburgerbun'] = {['name'] = 'rawburgerbun', ['label'] = 'Burger Bun', ['weight'] = 250, ['type'] = 'item', ['image'] = 'rawburgerbun.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burger bun ready to be cut in half!'},
['slicedburgerbun'] = {['name'] = 'slicedburgerbun', ['label'] = 'Sliced Burger Bun', ['weight'] = 125, ['type'] = 'item', ['image'] = 'slicedburgerbun.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced burger bun ready to be grilled!'},
-- Frier
['frozenfries'] = {['name'] = 'frozenfries', ['label'] = 'Frozen Fries', ['weight'] = 500, ['type'] = 'item', ['image'] = 'frozenfries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Frozen fries ready to be fried!'},
['friedfries'] = {['name'] = 'friedfries', ['label'] = 'Fries', ['weight'] = 250, ['type'] = 'item', ['image'] = 'friedfries.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fries ready to be eaten!'},
['friedonionring'] = {['name'] = 'friedonionring', ['label'] = 'Onion Ring', ['weight'] = 150, ['type'] = 'item', ['image'] = 'friedonionring.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Onion ring ready to be eaten!'},
['friedmozzarellastick'] = {['name'] = 'friedmozzarellastick', ['label'] = 'Fried Mozzarella Stick', ['weight'] = 100, ['type'] = 'item', ['image'] = 'friedmozzarellastick.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried mozzarella stick ready to be eaten!'},
['rawchickenstrip'] = {['name'] = 'rawchickenstrip', ['label'] = 'Raw Chicken', ['weight'] = 300, ['type'] = 'item', ['image'] = 'rawchickenstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw chicken ready to be fried!'},
['friedchickenstrip'] = {['name'] = 'friedchickenstrip', ['label'] = 'Fried Chicken', ['weight'] = 150, ['type'] = 'item', ['image'] = 'friedchickenstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried chicken ready to be put into a burger and eaten!'},
['rawfishstrip'] = {['name'] = 'rawfishstrip', ['label'] = 'Raw Fish', ['weight'] = 300, ['type'] = 'item', ['image'] = 'rawfishstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw fish ready to be fried!'},
['friedfishstrip'] = {['name'] = 'friedfishstrip', ['label'] = 'Fried Fish', ['weight'] = 150, ['type'] = 'item', ['image'] = 'friedfishstrip.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried fish ready to be put into a burger and eaten!'},
-- Grill
['frozenburgermeat'] = {['name'] = 'frozenburgermeat', ['label'] = 'Frozen Burger Meat', ['weight'] = 400, ['type'] = 'item', ['image'] = 'frozenburgermeat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Frozen burger meat ready to be grilled!'},
['grilledburgermeat'] = {['name'] = 'grilledburgermeat', ['label'] = 'Grilled Burger Meat', ['weight'] = 200, ['type'] = 'item', ['image'] = 'grilledburgermeat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burger meat ready to be put into a burger and eaten!'},
['grilledbacon'] = {['name'] = 'grilledbacon', ['label'] = 'Grilled Bacon', ['weight'] = 150, ['type'] = 'item', ['image'] = 'grilledbacon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Burger bacon ready to be put into a burger and eaten!'},
['rawsteak'] = {['name'] = 'rawsteak', ['label'] = 'Raw Steak', ['weight'] = 500, ['type'] = 'item', ['image'] = 'rawsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw steak ready to be grilled!'},
['grilledsteak'] = {['name'] = 'grilledsteak', ['label'] = 'Grilled Steak', ['weight'] = 250, ['type'] = 'item', ['image'] = 'grilledsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled steak ready to be put into a burger and eaten!'},
['rawegg'] = {['name'] = 'rawegg', ['label'] = 'Raw Egg', ['weight'] = 50, ['type'] = 'item', ['image'] = 'rawegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Egg ready to be grilled!'},
['friedegg'] = {['name'] = 'friedegg', ['label'] = 'Fried Egg', ['weight'] = 30, ['type'] = 'item', ['image'] = 'friedegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried egg ready to be put into a burger and eaten!'},
['grilledburgerbun'] = {['name'] = 'grilledburgerbun', ['label'] = 'Grilled Burger Bun', ['weight'] = 250, ['type'] = 'item', ['image'] = 'grilledburgerbun.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled burger bun ready to be filled!'},
-- Drinks
['burgershotcola'] = {['name'] = 'burgershotcola', ['label'] = 'eCola', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotcola.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'eCola from burgershot.'},
['burgershotcolalight'] = {['name'] = 'burgershotcolalight', ['label'] = 'eCola Light', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotcolalight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'eCola light from burgershot.'},
['burgershotsprunk'] = {['name'] = 'burgershotsprunk', ['label'] = 'Sprunk', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotsprunk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sprunk from burgershot.'},
['burgershotorang_o_tang'] = {['name'] = 'burgershotorang_o_tang', ['label'] = 'Orang O Tang', ['weight'] = 350, ['type'] = 'item', ['image'] = 'burgershotorang_o_tang.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Orang o tang from burgershot.'},
['burgershotcolaslushie'] = {['name'] = 'burgershotcolaslushie', ['label'] = 'eCola Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotcolaslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite eCola.'},
['burgershotcolalightslushie'] = {['name'] = 'burgershotcolalightslushie', ['label'] = 'eCola Light Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotcolalightslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite eCola light.'},
['burgershotsprunkslushie'] = {['name'] = 'burgershotsprunkslushie', ['label'] = 'Sprunk Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotsprunkslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite sprunk drink.'},
['burgershotorang_o_tangslushie'] = {['name'] = 'burgershotorang_o_tangslushie', ['label'] = 'Orang O Tang Slushie', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotorang_o_tangslushie.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Slushie from your favorite orang o tang drink.'},
-- Burgers
['classicburger'] = {['name'] = 'classicburger', ['label'] = 'GrillMaster Classic Burger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'classicburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Classic burger with your favorite flavors!'},
['classicburgerspicy'] = {['name'] = 'classicburgerspicy', ['label'] = 'GrillMaster Spicy Classic Burger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'classicburgerspicy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy classic burger with your favorite flavors!'},
['chickenburger'] = {['name'] = 'chickenburger', ['label'] = 'Loaded Chicken Avenger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'chickenburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chicken burger with your beloved crispy chicken!'},
['chickenburgerspicy'] = {['name'] = 'chickenburgerspicy', ['label'] = 'Loaded Spicy Chicken Avenger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'chickenburgerspicy.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy chicken burger with your beloved crispy chicken!'},
['fishburger'] = {['name'] = 'fishburger', ['label'] = 'Ocean Catch Burger', ['weight'] = 500, ['type'] = 'item', ['image'] = 'fishburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fish burger with your beloved freshly caught and fried fish!'},
['obeseburger'] = {['name'] = 'obeseburger', ['label'] = 'The Cardiac Crusher', ['weight'] = 700, ['type'] = 'item', ['image'] = 'obeseburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!'},
['steakburger'] = {['name'] = 'steakburger', ['label'] = 'The Cardiac Crusher', ['weight'] = 700, ['type'] = 'item', ['image'] = 'steakburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?'},
['reverseburger'] = {['name'] = 'reverseburger', ['label'] = 'Reverse Burger', ['weight'] = 450, ['type'] = 'item', ['image'] = 'reverseburger.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Flip tradition on its head and try this amazing reverse burger where salad replaced buns!'},
['burgershotsandwich'] = {['name'] = 'burgershotsandwich', ['label'] = 'Sunrise Ham Melt', ['weight'] = 400, ['type'] = 'item', ['image'] = 'burgershotsandwich.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy chicken burger with your beloved crispy chicken!'},
-- Other Items
['cleansponge'] = {['name'] = 'cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 50, ['type'] = 'item', ['image'] = 'cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['dirtysponge'] = {['name'] = 'dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 50, ['type'] = 'item', ['image'] = 'dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['cleancup'] = {['name'] = 'cleancup', ['label'] = 'Clean Cup', ['weight'] = 50, ['type'] = 'item', ['image'] = 'cleancup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean cup ready to be filled to the brim!'},
['dirtycup'] = {['name'] = 'dirtycup', ['label'] = 'Dirty Cup', ['weight'] = 50, ['type'] = 'item', ['image'] = 'dirtycup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cup which needs to be cleaned!'},
['burgershotfoodtray'] = {['name'] = 'burgershotfoodtray', ['label'] = 'Food Tray', ['weight'] = 200, ['type'] = 'item', ['image'] = 'burgershotfoodtray.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Food tray from burgershot.'},
['burgershotfoodtrayempty'] = {['name'] = 'burgershotfoodtrayempty', ['label'] = 'Empty Food Tray', ['weight'] = 100, ['type'] = 'item', ['image'] = 'burgershotfoodtrayempty.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Empty food tray from burgershot.'},
tgiann
Add the following into:
items.lua in your framework script
-- Other
salt = {name = "salt", label = "Salt", weight = 200, type = "item", image = "salt.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking salt!"},
burgershotdrinkcup = {name = "burgershotdrinkcup", label = "Empty Drinking Cup", weight = 50, type = "item", image = "burgershotdrinkcup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burgershot empty drinking cup."},
ice = {name = "ice", label = "Ice", weight = 500, type = "item", image = "ice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ice ready to cool your drink!"},
butter = {name = "butter", label = "Butter", weight = 250, type = "item", image = "butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Butter for cooking."},
colasyrup = {name = "colasyrup", label = "eCola Syrup", weight = 1000, type = "item", image = "colasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious cola drink!"},
colalightsyrup = {name = "colalightsyrup", label = "eCola Light Syrup", weight = 1000, type = "item", image = "colalightsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious light cola drink!"},
sprunksyrup = {name = "sprunksyrup", label = "Sprunk Syrup", weight = 1000, type = "item", image = "sprunksyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious sprunk drink!"},
orang_o_tangsyrup = {name = "orang_o_tangsyrup", label = "Orang O Tang Syrup", weight = 1000, type = "item", image = "orang_o_tangsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Syrup from which you can make delicious orang o tang drink!"},
ketchup = {name = "ketchup", label = "Ketchup", weight = 500, type = "item", image = "ketchup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Normal ketchup."},
-- Cutting Table
rawtomato = {name = "rawtomato", label = "Tomato", weight = 200, type = "item", image = "rawtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato ready to be sliced!"},
slicedtomato = {name = "slicedtomato", label = "Sliced Tomato", weight = 100, type = "item", image = "slicedtomato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Juicy tomato slices ready to be eaten!"},
rawsalad = {name = "rawsalad", label = "Salad", weight = 150, type = "item", image = "rawsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad ready to be sliced!"},
slicedsalad = {name = "slicedsalad", label = "Sliced Salad", weight = 75, type = "item", image = "slicedsalad.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Salad slices ready to be eaten!"},
rawcucumber = {name = "rawcucumber", label = "Cucumber", weight = 200, type = "item", image = "rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
slicedcucumber = {name = "slicedcucumber", label = "Sliced Cucumber", weight = 100, type = "item", image = "slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
rawonion = {name = "rawonion", label = "Onion", weight = 200, type = "item", image = "rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut!"},
slicedonion = {name = "slicedonion", label = "Sliced Onion", weight = 100, type = "item", image = "slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put on a burger and eaten!"},
rawchillipepper = {name = "rawchillipepper", label = "Chilli Pepper", weight = 50, type = "item", image = "rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut!"},
slicedchillipepper = {name = "slicedchillipepper", label = "Sliced Chilli Pepper", weight = 25, type = "item", image = "slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be put on a burger and eaten!"},
rawcheese = {name = "rawcheese", label = "Cheese", weight = 200, type = "item", image = "rawcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cheese ready to be cut!"},
slicedcheese = {name = "slicedcheese", label = "Sliced Cheese", weight = 100, type = "item", image = "slicedcheese.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cheese ready to be put on a burger and eaten!"},
rawham = {name = "rawham", label = "Ham", weight = 500, type = "item", image = "rawham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Ham ready to be cut!"},
slicedham = {name = "slicedham", label = "Sliced Ham", weight = 250, type = "item", image = "slicedham.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced ham ready to be put on a burger and eaten!"},
rawbacon = {name = "rawbacon", label = "Bacon", weight = 300, type = "item", image = "rawbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Bacon ready to be cut!"},
slicedbacon = {name = "slicedbacon", label = "Sliced Bacon", weight = 150, type = "item", image = "slicedbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced bacon ready to be put on a sandwich or grilled and eaten!"},
rawsandwichbread = {name = "rawsandwichbread", label = "Sandwich Bread", weight = 400, type = "item", image = "rawsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sandwich Bread ready to be cut!"},
slicedsandwichbread = {name = "slicedsandwichbread", label = "Sliced Sandwich Bread", weight = 200, type = "item", image = "slicedsandwichbread.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced sandwich bread ready to be put on a burger and eaten!"},
rawburgerbun = {name = "rawburgerbun", label = "Burger Bun", weight = 250, type = "item", image = "rawburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bun ready to be cut in half!"},
slicedburgerbun = {name = "slicedburgerbun", label = "Sliced Burger Bun", weight = 125, type = "item", image = "slicedburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced burger bun ready to be grilled!"},
-- Frier
frozenfries = {name = "frozenfries", label = "Frozen Fries", weight = 500, type = "item", image = "frozenfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen fries ready to be fried!"},
friedfries = {name = "friedfries", label = "Fries", weight = 250, type = "item", image = "friedfries.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fries ready to be eaten!"},
friedonionring = {name = "friedonionring", label = "Onion Ring", weight = 150, type = "item", image = "friedonionring.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ring ready to be eaten!"},
friedmozzarellastick = {name = "friedmozzarellastick", label = "Fried Mozzarella Stick", weight = 100, type = "item", image = "friedmozzarellastick.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried mozzarella stick ready to be eaten!"},
rawchickenstrip = {name = "rawchickenstrip", label = "Raw Chicken", weight = 300, type = "item", image = "rawchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken ready to be fried!"},
friedchickenstrip = {name = "friedchickenstrip", label = "Fried Chicken", weight = 150, type = "item", image = "friedchickenstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried chicken ready to be put into a burger and eaten!"},
rawfishstrip = {name = "rawfishstrip", label = "Raw Fish", weight = 300, type = "item", image = "rawfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw fish ready to be fried!"},
friedfishstrip = {name = "friedfishstrip", label = "Fried Fish", weight = 150, type = "item", image = "friedfishstrip.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried fish ready to be put into a burger and eaten!"},
-- Grill
frozenburgermeat = {name = "frozenburgermeat", label = "Frozen Burger Meat", weight = 400, type = "item", image = "frozenburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frozen burger meat ready to be grilled!"},
grilledburgermeat = {name = "grilledburgermeat", label = "Grilled Burger Meat", weight = 200, type = "item", image = "grilledburgermeat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger meat ready to be put into a burger and eaten!"},
grilledbacon = {name = "grilledbacon", label = "Grilled Bacon", weight = 150, type = "item", image = "grilledbacon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Burger bacon ready to be put into a burger and eaten!"},
rawsteak = {name = "rawsteak", label = "Raw Steak", weight = 500, type = "item", image = "rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled!"},
grilledsteak = {name = "grilledsteak", label = "Grilled Steak", weight = 250, type = "item", image = "grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be put into a burger and eaten!"},
rawegg = {name = "rawegg", label = "Raw Egg", weight = 50, type = "item", image = "rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Egg ready to be grilled!"},
friedegg = {name = "friedegg", label = "Fried Egg", weight = 30, type = "item", image = "friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten!"},
grilledburgerbun = {name = "grilledburgerbun", label = "Grilled Burger Bun", weight = 250, type = "item", image = "grilledburgerbun.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled burger bun ready to be filled!"},
-- Drinks
burgershotcola = {name = "burgershotcola", label = "eCola", weight = 350, type = "item", image = "burgershotcola.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola from burgershot."},
burgershotcolalight = {name = "burgershotcolalight", label = "eCola Light", weight = 350, type = "item", image = "burgershotcolalight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "eCola light from burgershot."},
burgershotsprunk = {name = "burgershotsprunk", label = "Sprunk", weight = 350, type = "item", image = "burgershotsprunk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sprunk from burgershot."},
burgershotorang_o_tang = {name = "burgershotorang_o_tang", label = "Orang O Tang", weight = 350, type = "item", image = "burgershotorang_o_tang.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Orang o tang from burgershot."},
burgershotcolaslushie = {name = "burgershotcolaslushie", label = "eCola Slushie", weight = 400, type = "item", image = "burgershotcolaslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola."},
burgershotcolalightslushie = {name = "burgershotcolalightslushie", label = "eCola Light Slushie", weight = 400, type = "item", image = "burgershotcolalightslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite eCola light."},
burgershotsprunkslushie = {name = "burgershotsprunkslushie", label = "Sprunk Slushie", weight = 400, type = "item", image = "burgershotsprunkslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite sprunk drink."},
burgershotorang_o_tangslushie = {name = "burgershotorang_o_tangslushie", label = "Orang O Tang Slushie", weight = 400, type = "item", image = "burgershotorang_o_tangslushie.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Slushie from your favorite orang o tang drink."},
-- Burgers
classicburger = {name = "classicburger", label = "GrillMaster Classic Burger", weight = 500, type = "item", image = "classicburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Classic burger with your favorite flavors!"},
classicburgerspicy = {name = "classicburgerspicy", label = "GrillMaster Spicy Classic Burger", weight = 500, type = "item", image = "classicburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy classic burger with your favorite flavors!"},
chickenburger = {name = "chickenburger", label = "Loaded Chicken Avenger", weight = 500, type = "item", image = "chickenburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chicken burger with your beloved crispy chicken!"},
chickenburgerspicy = {name = "chickenburgerspicy", label = "Loaded Spicy Chicken Avenger", weight = 500, type = "item", image = "chickenburgerspicy.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
fishburger = {name = "fishburger", label = "Ocean Catch Burger", weight = 500, type = "item", image = "fishburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fish burger with your beloved freshly caught and fried fish!"},
obeseburger = {name = "obeseburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "obeseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A towering behemoth of beef, bacon, cheese, and toppings that will feed you or kill you!"},
steakburger = {name = "steakburger", label = "The Cardiac Crusher", weight = 700, type = "item", image = "steakburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "For when you want your steak experience to be sandwiched between two buns, because who needs a plate, right?"},
reverseburger = {name = "reverseburger", label = "Reverse Burger", weight = 450, type = "item", image = "reverseburger.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Flip tradition on its head and try this amazing reverse burger where salad replaced buns!"},
burgershotsandwich = {name = "burgershotsandwich", label = "Sunrise Ham Melt", weight = 400, type = "item", image = "burgershotsandwich.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy chicken burger with your beloved crispy chicken!"},
-- Other Items
cleansponge = {name = "cleansponge", label = "Clean Sponge", weight = 50, type = "item", image = "cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
dirtysponge = {name = "dirtysponge", label = "Dirty Sponge", weight = 50, type = "item", image = "dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
cleancup = {name = "cleancup", label = "Clean Cup", weight = 50, type = "item", image = "cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled to the brim!"},
dirtycup = {name = "dirtycup", label = "Dirty Cup", weight = 50, type = "item", image = "dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup which needs to be cleaned!"},
burgershotfoodtray = {name = "burgershotfoodtray", label = "Food Tray", weight = 200, type = "item", image = "burgershotfoodtray.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Food tray from burgershot."},
burgershotfoodtrayempty = {name = "burgershotfoodtrayempty", label = "Empty Food Tray", weight = 100, type = "item", image = "burgershotfoodtrayempty.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Empty food tray from burgershot."},
esx
Add the following into your database:
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
-- Other
('salt', 'Salt', 200, 0, 1),
('burgershotdrinkcup', 'Empty Drinking Cup', 50, 0, 1),
('ice', 'Ice', 500, 0, 1),
('butter', 'Butter', 250, 0, 1),
('colasyrup', 'eCola Syrup', 1000, 0, 1),
('colalightsyrup', 'eCola Light Syrup', 1000, 0, 1),
('sprunksyrup', 'Sprunk Syrup', 1000, 0, 1),
('orang_o_tangsyrup', 'Orang O Tang Syrup', 1000, 0, 1),
('ketchup', 'Ketchup', 500, 0, 1),
-- Cutting Table
('rawtomato', 'Tomato', 200, 0, 1),
('slicedtomato', 'Sliced Tomato', 100, 0, 1),
('rawsalad', 'Salad', 150, 0, 1),
('slicedsalad', 'Sliced Salad', 75, 0, 1),
('rawcucumber', 'Cucumber', 200, 0, 1),
('slicedcucumber', 'Sliced Cucumber', 100, 0, 1),
('rawonion', 'Onion', 200, 0, 1),
('slicedonion', 'Sliced Onion', 100, 0, 1),
('rawchillipepper', 'Chilli Pepper', 50, 0, 1),
('slicedchillipepper', 'Sliced Chilli Pepper', 25, 0, 1),
('rawcheese', 'Cheese', 200, 0, 1),
('slicedcheese', 'Sliced Cheese', 100, 0, 1),
('rawham', 'Ham', 500, 0, 1),
('slicedham', 'Sliced Ham', 250, 0, 1),
('rawbacon', 'Bacon', 300, 0, 1),
('slicedbacon', 'Sliced Bacon', 150, 0, 1),
('rawsandwichbread', 'Sandwich Bread', 400, 0, 1),
('slicedsandwichbread', 'Sliced Sandwich Bread', 200, 0, 1),
('rawburgerbun', 'Burger Bun', 250, 0, 1),
('slicedburgerbun', 'Sliced Burger Bun', 125, 0, 1),
-- Frier
('frozenfries', 'Frozen Fries', 500, 0, 1),
('friedfries', 'Fries', 250, 0, 1),
('friedonionring', 'Onion Ring', 150, 0, 1),
('friedmozzarellastick', 'Fried Mozzarella Stick', 100, 0, 1),
('rawchickenstrip', 'Raw Chicken', 300, 0, 1),
('friedchickenstrip', 'Fried Chicken', 150, 0, 1),
('rawfishstrip', 'Raw Fish', 300, 0, 1),
('friedfishstrip', 'Fried Fish', 150, 0, 1),
-- Grill
('frozenburgermeat', 'Frozen Burger Meat', 400, 0, 1),
('grilledburgermeat', 'Grilled Burger Meat', 200, 0, 1),
('grilledbacon', 'Grilled Bacon', 150, 0, 1),
('rawsteak', 'Raw Steak', 500, 0, 1),
('grilledsteak', 'Grilled Steak', 250, 0, 1),
('rawegg', 'Raw Egg', 50, 0, 1),
('friedegg', 'Fried Egg', 30, 0, 1),
('grilledburgerbun', 'Grilled Burger Bun', 250, 0, 1),
-- Drinks
('burgershotcola', 'eCola', 350, 0, 1),
('burgershotcolalight', 'eCola Light', 350, 0, 1),
('burgershotsprunk', 'Sprunk', 350, 0, 1),
('burgershotorang_o_tang', 'Orang O Tang', 350, 0, 1),
('burgershotcolaslushie', 'eCola Slushie', 400, 0, 1),
('burgershotcolalightslushie', 'eCola Light Slushie', 400, 0, 1),
('burgershotsprunkslushie', 'Sprunk Slushie', 400, 0, 1),
('burgershotorang_o_tangslushie', 'Orang O Tang Slushie', 400, 0, 1),
-- Burgers
('classicburger', 'GrillMaster Classic Burger', 500, 0, 1),
('classicburgerspicy', 'GrillMaster Spicy Classic Burger', 500, 0, 1),
('chickenburger', 'Loaded Chicken Avenger', 500, 0, 1),
('chickenburgerspicy', 'Loaded Spicy Chicken Avenger', 500, 0, 1),
('fishburger', 'Ocean Catch Burger', 500, 0, 1),
('obeseburger', 'The Cardiac Crusher', 700, 0, 1),
('steakburger', 'The Cardiac Crusher', 700, 0, 1),
('reverseburger', 'Reverse Burger', 450, 0, 1),
('burgershotsandwich', 'Sunrise Ham Melt', 400, 0, 1),
-- Other Items
('cleansponge', 'Clean Sponge', 50, 0, 1),
('dirtysponge', 'Dirty Sponge', 50, 0, 1),
('cleancup', 'Clean Cup', 50, 0, 1),
('dirtycup', 'Dirty Cup', 50, 0, 1),
('burgershotfoodtray', 'Food Tray', 200, 0, 1),
('burgershotfoodtrayempty', 'Empty Food Tray', 100, 0, 1);
Create burgershot society/job:
esx
Add the following into your database:
INSERT INTO `jobs` (name, label) VALUES
('burgershot', 'Burger Shot');
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('burgershot', 0, 'recruit', 'Recruit', 200, '{}', '{}'),
('burgershot', 1, 'trainee', 'Trainee', 200, '{}', '{}'),
('burgershot', 2, 'employee', 'Employee', 200, '{}', '{}'),
('burgershot', 3, 'underboss', 'Manager', 200, '{}', '{}'),
('burgershot', 4, 'boss', 'CEO', 200, '{}', '{}');
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_burgershot', 'Burger Shot', 1);
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_burgershot', 'Burger Shot', 1);
qb
Add the following into:
qb-core\shared\jobs.lua
['burgershot'] = {
label = 'Burger Shot Employee',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit',
payment = 200
},
['1'] = {
name = 'Trainee',
payment = 200
},
['2'] = {
name = 'Employee',
payment = 200
},
['3'] = {
name = 'Manager',
isboss = true,
payment = 200
},
['4'] = {
name = 'CEO',
isboss = true,
payment = 200
},
},
},
qbox
Add the following into:
qbx_core\shared\jobs.lua
['burgershot'] = {
label = 'Burger Shot Employee',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit',
payment = 200
},
['1'] = {
name = 'Trainee',
payment = 200
},
['2'] = {
name = 'Employee',
payment = 200
},
['3'] = {
name = 'Manager',
isboss = true,
payment = 200
},
['4'] = {
name = 'CEO',
isboss = true,
payment = 200
},
},
},
Configure everything to your liking in Config.lua.
Add the following into your database:
CREATE TABLE IF NOT EXISTS burgershot_stock ( item VARCHAR(255) NOT NULL, amount int(11) NOT NULL DEFAULT 0 )
Restart your inventory script and start fivecode_burgershotjob, or restart your server.
Enjoy the script!
[Optional] If you want to have item image in your inventory, place the image below here:
fivecode_burgershotjob\Installation #9 - Images
-ox_inventory\web\images
-qb-inventory\html\images
-qs-inventory\html\images
-ps-inventory\html\images
-codem-inventory\html\itemimages
-core_inventory\html\img
-origen_inventory\html\images
-tgiann-inventory\inventory_images\images
-esx_inventory\html\img\items
If you need help with anything else, do not hesitate and open a support ticket in our discord.
Last updated
Was this helpful?