SouF Store
DiscordYoutube
  • ๐Ÿ“‚Fivem Scripts
    • โณPriority Cooldown
      • Installation
      • Server Exports
    • ๐Ÿ”Storage Units
      • Installation
    • Voting System
      • Installation
  • ๐Ÿ”BurgerShot Job
    • Installation
    • Config Preview
    • Exports
    • Maps Support
  • โ˜•BeanMachine Job
    • Installation
    • Script Showcase
      • ๐Ÿ’ปLaptop System
      • ๐Ÿ–ฅ๏ธBoss Menu System
      • ๐Ÿ›’Customer Shop
      • ๐Ÿ›’Ingredient Shop
      • ๐Ÿ‘จโ€๐ŸณPreparation System
      • โ„๏ธIce Machine System
      • ๐ŸšDelivery System
      • ๐Ÿ’ตBilling System
      • ๐Ÿ“ปDJ Booth
      • ๐Ÿš™Garage
      • ๐Ÿงพ3D Text Scenes
      • ๐Ÿ†˜Emergency Assistance System
      • ๐Ÿ‘”Outfit System
      • ๐Ÿ–‹๏ธDuty System
      • ๐ŸšชDoorlock System
      • ๐Ÿ‘๏ธInteracts
    • Config Preview
    • Exports
      • Client Exports
      • Server Export
    • Maps Support
    • Integrations
  • ๐Ÿ•Pizza This Job
    • Installation
    • Config Preview
    • Exports
      • Client Exports
      • Server Export
    • Maps Support
    • Integrations
  • ๐Ÿ˜ปUwU Cate Cafe Job
    • Installation
    • Config Preview
    • Exports
      • Client Exports
      • Server Export
    • Maps Support
    • Integrations
Powered by GitBook
On this page
  • Step 1: Install Dependencies
  • Step 2: Setup Framework
  • Step 3: Add items list and images to inventory
  • Step 4: Only for qb-inventory v2 users
  • Step 5: Setup Config
  • Step 6: Ensure Resource

Was this helpful?

  1. BurgerShot Job

Installation

The installation its easier and simple

PreviousBurgerShot JobNextConfig Preview

Last updated 27 days ago

Was this helpful?

Automatic SQL Injection

In the sf_burgershot/!install directory, you'll find a file called data_burgershot.sql. There's no need to manually import this into your database. When you launch your server (or just the resource), it will automatically generate and configure the required database table if it hasn't already been created.

Step 1: Install Dependencies

  • Don't forget to install sf_lib, which is included with the script upon purchase.

Step 2: Setup Framework

Go to sf_lib/Config.lua and config your framework.

Step 3: Add items list and images to inventory

ox_inventory

Add items into ox_inventory/data/items.lua

-- BurgerShot Items 
['bg_bacon'] = {
	label = "Bacon",
	weight = 500,
	stack = true,
	close = true,
	description = "Savory crispy strips of meat.",
},
["bg_bun"] = {
	label = "Bun",
	weight = 250,
	stack = true,
	close = true,
	description = "Soft and fluffy bread base.",
},
["bg_empty_bag"] = {
	label = "Empty Bag",
	weight = 250,
	stack = false,
	close = true,
	consume = 0,
	description = "Empty bag.",
},
["bg_burgershot_bag"] = {
	label = "Burgershot Bag",
	weight = 5000,
	stack = false,
	close = true,
	consume = 0,
	description = "Convenient packaging for your meal.",
},
["bg_knife"] = {
	label = "Knife",
	weight = 500,
	stack = false,
	close = true,
	description = "Knife to cut ingredient.",
},
["bg_cheese"] = {
	label = "Cheese",
	weight = 150,
	stack = true,
	close = true,
	description = "Melted and creamy dairy delight.",
},
["bg_ice"] = {
	label = "Ice",
	weight = 100,
	stack = true,
	close = true,
	description = "Chilled and refreshing frozen water.",
},
["bg_oil"] = {
	label = "Oil",
	weight = 300,
	stack = true,
	close = true,
	description = "Essential cooking and flavoring ingredient.",
},
["bg_fried_egg"] = {
	label = "Fried Egg",
	weight = 300,
	stack = true,
	close = true,
	description = "Delightfully cooked sunny-side-up egg.",
},
["bg_egg"] = {
	label = "Egg",
	weight = 300,
	stack = true,
	close = true,
	description = "Versatile and protein-rich breakfast staple.",
},
["bg_cooked_patty"] = {
	label = "Cooked Patty",
	weight = 300,
	stack = true,
	close = true,
	description = "Perfectly grilled meat patty.",
},
["bg_raw_patty"] = {
	label = "Raw Patty",
	weight = 250,
	stack = true,
	close = true,
	description = "Uncooked meat patty ready for grilling.",
},
["bg_ecola"] = {
	label = "Ecola",
	weight = 1000,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing carbonated beverage.",
},
["bg_ecola_empty"] = {
	label = "eCola Empty Cup",
	weight = 250,
	stack = true,
	close = true,
	description = "Empty Cup.",
},
["bg_ecola_light"] = {
	label = "Ecola Light",
	weight = 1000,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing carbonated beverage.",
},
["bg_ecola_light_empty"] = {
	label = "eCola Light Empty Cup",
	weight = 250,
	stack = true,
	close = true,
	description = "Empty Cup.",
},
["bg_drang_o_tang"] = {
	label = "Drang O Tang",
	weight = 1000,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing carbonated beverage.",
},
["bg_drang_o_tang_empty"] = {
	label = "DT Empty Cup",
	weight = 250,
	stack = true,
	close = true,
	description = "Empty Cup.",
},
["bg_sprunk"] = {
	label = "Sprunk",
	weight = 1000,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing carbonated beverage.",
},
["bg_sprunk_empty"] = {
	label = "Sprunk Empty Cup",
	weight = 250,
	stack = true,
	close = true,
	description = "Empty Cup.",
},
["bg_water_bootle"] = {
	label = "Water Bootle",
	weight = 1000,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing hydration in a convenient portable container."
},
["bg_juice_orange"] = {
	label = "Juice Orange",
	weight = 1250,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing beverage.",
},
["bg_juice_apple"] = {
	label = "Juice Apple",
	weight = 1250,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing beverage.",
},
["bg_juice_pineapple"] = {
	label = "Juice Pineapple",
	weight = 1250,
	stack = true,
	close = true,
	consume = 0,
	description = "Refreshing beverage.",
},
["bg_juice_empty"] = {
	label = "Juice Empty Cup",
	weight = 500,
	stack = true,
	close = true,
	description = "Cup for drinks.",
},
["bg_destroyed_cup"] = {
	label = "Destroy Cup",
	weight = 200,
	stack = true,
	close = true,
	description = "Destroy cup for drinks.",
},
["bg_salt"] = {
	label = "Salt",
	weight = 250,
	stack = true,
	close = true,
	description = "Essential seasoning for enhancing flavors.",
},
["bg_ketchup"] = {
	label = "Ketchup",
	weight = 250,
	stack = true,
	close = true,
	description = "Classic tangy tomato-based condiment.",
},
["bg_special_sauce"] = {
	label = "Special Sauce",
	weight = 250,
	stack = true,
	close = true,
	description = "Secret recipe dressing for added flavor.",
},
["bg_chopped_potato"] = {
	label = "Chopped Potato",
	weight = 150,
	stack = true,
	close = true,
	description = "Bite-sized pieces of fried potatoes.",
},
["bg_chopped_fries"] = {
	label = "Chopped Fries",
	weight = 150,
	stack = true,
	close = true,
	description = "Chopped fries.",
},
["bg_chopped_lettuce"] = {
	label = "Chopped Lettuce",
	weight = 50,
	stack = true,
	close = true,
	description = "Fresh and crisp leafy greens.",
},
["bg_chopped_onion"] = {
	label = "Chopped Onion",
	weight = 50,
	stack = true,
	close = true,
	description = "Finely diced pungent bulb vegetable.",
},
["bg_chopped_pickle"] = {
	label = "Chopped Pickle",
	weight = 50,
	stack = true,
	close = true,
	description = "Tangy and crunchy brined cucumber.",
},
["bg_chopped_tomato"] = {
	label = "Chopped Tomato",
	weight = 50,
	stack = true,
	close = true,
	description = "Ripe and juicy red fruit.",
},
["bg_lettuce"] = {
	label = "Lettuce",
	weight = 500,
	stack = true,
	close = true,
	description = "Crisp and leafy green vegetable.",
},
["bg_onion"] = {
	label = "Onion",
	weight = 250,
	stack = true,
	close = true,
	description = "Aromatic and flavorful bulb vegetable.",
},
["bg_pickle"] = {
	label = "Pickle",
	weight = 250,
	stack = true,
	close = true,
	description = "Tangy and briny pickled cucumber.",
},
["bg_potato"] = {
	label = "Potato",
	weight = 250,
	stack = true,
	close = true,
	description = "Versatile starchy vegetable for various dishes.",
},
["bg_tomato"] = {
	label = "Tomato",
	weight = 250,
	stack = true,
	close = true,
	description = "Juicy and vibrant red fruit.",
},
["bg_burgershot_fries_box"] = {
	label = "Burgershot Box Fries",
	weight = 500,
	stack = true,
	close = true,
	description = "Box fries.",
},
["bg_burgershot_fries"] = {
	label = "Burgershot Fries",
	weight = 700,
	stack = true,
	close = true,
	consume = 0,
	description = "Crispy and delicious potato fries.",
},
["bg_bleeder_burger"] = {
	label = "Bleeder Burger",
	weight = 500,
	stack = true,
	close = true,
	consume = 0,
	description = "Juicy and flavorful beef patty.",
},
["bg_heart_stopper_burger"] = {
	label = "Heart Stopper Burger",
	weight = 700,
	stack = true,
	close = true,
	consume = 0,
	description = "Indulgent and decadent burger choice.",
},
["bg_fingle_burger"] = {
	label = "Fingle Burger",
	weight = 500,
	stack = true,
	close = true,
	consume = 0,
	description = "Tasty and satisfying burger option.",
},
["bg_meat_free_burger"] = {
	label = "Meat Free Burger",
	weight = 500,
	stack = true,
	close = true,
	consume = 0,
	description = "Plant-based alternative patty.",
},
["bg_money_shot_burger"] = {
	label = "Money Shot Burger",
	weight = 500,
	stack = true,
	close = true,
	consume = 0,
	description = "Luxurious and extravagant burger creation."
},	
["bg_10litr_water"] = {
	label = "10ltr Water",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr water.",
},	
["bg_10litr_apple"] = {
	label = "10ltr Apple",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr Apple.",
},
["bg_10litr_ecola"] = {
	label = "10ltr eCola",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr eCola.",
},
["bg_10litr_ecola_light"] = {
	label = "10ltr eCola Light",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr eCola Light.",
},
["bg_10litr_drang_o_tang"] = {
	label = "10ltr Drang O Tang",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr Drang O Tang.",
},
["bg_10litr_orange"] = {
	label = "10ltr Orange",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr Orange.",
},
["bg_10litr_sprunk"] = {
	label = "10ltr Sprunk",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr Sprunk.",
},
["bg_10litr_pineapple"] = {
	label = "10ltr Pine Apple",
	weight = 10000,
	stack = false,
	close = true,
	description = "10 litr Pine Apple.",
},
["bg_sticker"] = {
	label = "BurgerShot Sticker",
	weight = 20,
	stack = true,
	close = true,
	description = "Mini sticker using in packaging.",
},
qb-inventory

Add this item in into qb-core/shared/items.lua

-- // BurgerShot Items 
bg_bacon                    = {
    name = 'bg_bacon', 				
    label = 'Bacon', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bacon.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Savory crispy strips of meat.'
},
bg_bun                      = {
    name = 'bg_bun', 					
    label = 'Bun', 						
    weight = 250, 	
    type = 'item', 	
    image = 'bg_bun.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Soft and fluffy bread base.'
},
bg_empty_bag           = {
    name = 'bg_empty_bag', 		
    label = 'Empty Bag', 			
    weight = 250, 	
    type = 'item', 	
    image = 'bg_empty_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty bag.'
},
bg_burgershot_bag           = {
    name = 'bg_burgershot_bag', 		
    label = 'Burgershot Bag', 			
    weight = 5000, 	
    type = 'item', 	
    image = 'bg_burgershot_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Convenient packaging for your meal.'
},
bg_knife                    = {
    name = 'bg_knife', 					
    label = 'Knife', 						
    weight = 500, 	
    type = 'item', 	
    image = 'bg_knife.png', 						
    unique = true, 	
    useable = false, 
    shouldClose = false, 
    combinable = nil,   
    description = 'Knife to cut ingredient.'
},
bg_cheese                   = {
    name = 'bg_cheese', 				
    label = 'Cheese', 					
    weight = 150, 	
    type = 'item', 	
    image = 'bg_cheese.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Melted and creamy dairy delight.'
},
bg_ice                      = {
    name = 'bg_ice', 					
    label = 'Ice', 						
    weight = 100, 	
    type = 'item', 	
    image = 'bg_ice.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chilled and refreshing frozen water.'
},
bg_oil                      = {
    name = 'bg_oil', 					
    label = 'Oil', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_oil.png', 						
    unique = false, 		
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential cooking and flavoring ingredient.'
},


bg_fried_egg                = {
    name = 'bg_fried_egg', 			
    label = 'Fried Egg', 				
    weight = 300, 	
    type = 'item', 	
    image = 'bg_fried_egg.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Delightfully cooked sunny-side-up egg.'
},
bg_egg                      = {
    name = 'bg_egg', 					
    label = 'Egg', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_egg.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile and protein-rich breakfast staple.'
},


bg_cooked_patty             = {
    name = 'bg_cooked_patty', 			
    label = 'Cooked Patty', 			
    weight = 300, 	
    type = 'item', 	
    image = 'bg_cooked_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Perfectly grilled meat patty.'
},
bg_raw_patty                = {
    name = 'bg_raw_patty', 			
    label = 'Raw Patty', 				
    weight = 250, 	
    type = 'item', 	
    image = 'bg_raw_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Uncooked meat patty ready for grilling.'
},


bg_ecola                    = {
    name = 'bg_ecola', 			    
    label = 'Ecola', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_empty                    = {
    name = 'bg_ecola_empty', 			    
    label = 'eCola Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_ecola_light                    = {
    name = 'bg_ecola_light', 			    
    label = 'Ecola Light', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola_light.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_light_empty                    = {
    name = 'bg_ecola_light_empty', 			    
    label = 'eCola Light Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_light_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_drang_o_tang                    = {
    name = 'bg_drang_o_tang', 			    
    label = 'Drang O Tang', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_drang_o_tang.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_drang_o_tang_empty                    = {
    name = 'bg_drang_o_tang_empty', 			    
    label = 'DT Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_drang_o_tang_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_sprunk                    = {
    name = 'bg_sprunk', 			    
    label = 'Sprunk', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_sprunk.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_sprunk_empty                    = {
    name = 'bg_sprunk_empty', 			    
    label = 'Sprunk Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_sprunk_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_water_bootle             = {
    name = 'bg_water_bootle', 			
    label = 'Water Bootle', 			
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_water_bootle.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing hydration in a convenient portable container.'
},
bg_juice_orange             = {
    name = 'bg_juice_orange', 			
    label = 'Juice Orange', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_orange.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_apple             = {
    name = 'bg_juice_apple', 			
    label = 'Juice Apple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_apple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_pineapple             = {
    name = 'bg_juice_pineapple', 			
    label = 'Juice Pineapple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_pineapple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_empty          = {
    name = 'bg_juice_empty', 		
    label = 'Empty Cup', 				
    weight = 500, 	
    type = 'item', 	
    image = 'bg_juice_empty.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Cup for drinks.'
},
bg_destroyed_cup          = {
    name = 'bg_destroyed_cup', 		
    label = 'Destroy Cup', 				
    weight = 200, 	
    type = 'item', 	
    image = 'bg_destroyed_cup.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Destroy cup for drinks.'
},

bg_salt                     = {
    name = 'bg_salt', 					
    label = 'Salt', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_salt.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential seasoning for enhancing flavors.'
},	
bg_ketchup                  = {
    name = 'bg_ketchup', 				
    label = 'Ketchup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ketchup.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Classic tangy tomato-based condiment.'
},
bg_special_sauce               = {
    name = 'bg_special_sauce', 		    
    label = 'Special Sauce', 			    
    weight = 250, 	
    type = 'item', 	
    image = 'bg_special_sauce.png', 			    
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Secret recipe dressing for added flavor.'
},


bg_chopped_potato            = {
    name = 'bg_chopped_potato', 		
    label = 'Chopped Potato', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_potato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Bite-sized pieces of fried potatoes.'
},
bg_chopped_fries       = {
    name = 'bg_chopped_fries', 		
    label = 'Chopped Fries', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_fries.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chopped fries.'
},
bg_chopped_lettuce          = {
    name = 'bg_chopped_lettuce', 		
    label = 'Chopped Lettuce', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_lettuce.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Fresh and crisp leafy greens.'
},
bg_chopped_onion            = {
    name = 'bg_chopped_onion', 		
    label = 'Chopped Onion', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_onion.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Finely diced pungent bulb vegetable.'
},
bg_chopped_pickle           = {
    name = 'bg_chopped_pickle', 		
    label = 'Chopped Pickle', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_pickle.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and crunchy brined cucumber.'
},
bg_chopped_tomato           = {
    name = 'bg_chopped_tomato', 		
    label = 'Chopped Tomato', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_tomato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Ripe and juicy red fruit.'
},
bg_lettuce                  = {
    name = 'bg_lettuce', 				
    label = 'Lettuce', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_lettuce.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Crisp and leafy green vegetable.'
},
bg_onion                    = {
    name = 'bg_onion', 				
    label = 'Onion', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_onion.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Aromatic and flavorful bulb vegetable.'
},
bg_pickle                   = {
    name = 'bg_pickle', 				
    label = 'Pickle', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_pickle.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and briny pickled cucumber.'
},
bg_potato                   = {
    name = 'bg_potato', 				
    label = 'Potato', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_potato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile starchy vegetable for various dishes.'
},
bg_tomato                   = {
    name = 'bg_tomato', 				
    label = 'Tomato', 					
    weight = 250, 	
    type = 'item', 
    image = 'bg_tomato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and vibrant red fruit.'
},


bg_burgershot_fries_box        = {
    name = 'bg_burgershot_fries_box', 		
    label = 'Burgershot Box Fries', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_burgershot_fries_box.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Box fries.'
},


bg_burgershot_fries         = {
    name = 'bg_burgershot_fries', 		
    label = 'Burgershot Fries', 		
    weight = 700, 	
    type = 'item', 	
    image = 'bg_burgershot_fries.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Crispy and delicious potato fries.'
},
bg_bleeder_burger           = {
    name = 'bg_bleeder_burger', 		
    label = 'Bleeder Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bleeder_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and flavorful beef patty.'
},
bg_heart_stopper_burger     = {
    name = 'bg_heart_stopper_burger', 	
    label = 'Heart Stopper Burger', 	
    weight = 700, 	
    type = 'item', 	
    image = 'bg_heart_stopper_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Indulgent and decadent burger choice.'
},
bg_fingle_burger            = {
    name = 'bg_fingle_burger', 		
    label = 'Fingle Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_fingle_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Tasty and satisfying burger option.'
},
bg_meat_free_burger         = {
    name = 'bg_meat_free_burger', 		
    label = 'Meat Free Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_meat_free_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Plant-based alternative patty.'
},
bg_money_shot_burger        = {
    name = 'bg_money_shot_burger', 	
    label = 'Money Shot Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_money_shot_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Luxurious and extravagant burger creation.'
},	


bg_10litr_water        = {
    name = 'bg_10litr_water', 	
    label = '10ltr Water', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_water.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr water.'
},
bg_10litr_apple        = {
    name = 'bg_10litr_apple', 	
    label = '10ltr Apple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_apple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Apple.'
},
bg_10litr_ecola        = {
    name = 'bg_10litr_ecola', 	
    label = '10ltr eCola', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola.png', 		
    unique = true, 	
    useable = false,   
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola.'
},
bg_10litr_ecola_light        = {
    name = 'bg_10litr_ecola_light', 	
    label = '10ltr eCola Light', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola_light.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola Light.'
},
bg_10litr_drang_o_tang        = {
    name = 'bg_10litr_drang_o_tang', 	
    label = '10ltr Drang O Tang', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_drang_o_tang.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Drang O Tang.'
},
bg_10litr_orange        = {
    name = 'bg_10litr_orange', 	
    label = '10ltr Orange', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_orange.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Orange.'
},
bg_10litr_pineapple        = {
    name = 'bg_10litr_pineapple', 	
    label = '10ltr Pineapple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_pineapple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Pineapple.'
},
bg_10litr_sprunk        = {
    name = 'bg_10litr_sprunk', 	
    label = '10ltr Sprunk', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_sprunk.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Sprunk.'
},
bg_sticker        = {
    name = 'bg_sticker', 	
    label = 'BurgerShot Sticker', 		
    weight = 20, 	
    type = 'item', 	
    image = 'bg_sticker.png', 		
    unique = false, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = ''
},
qs-inventory

Add this item in into qs-inventory/shared/items.lua

-- // BurgerShot Items 
bg_bacon                    = {
    name = 'bg_bacon', 				
    label = 'Bacon', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bacon.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Savory crispy strips of meat.'
},
bg_bun                      = {
    name = 'bg_bun', 					
    label = 'Bun', 						
    weight = 250, 	
    type = 'item', 	
    image = 'bg_bun.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Soft and fluffy bread base.'
},
bg_empty_bag           = {
    name = 'bg_empty_bag', 		
    label = 'Empty Bag', 			
    weight = 250, 	
    type = 'item', 	
    image = 'bg_empty_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty bag.'
},
bg_burgershot_bag           = {
    name = 'bg_burgershot_bag', 		
    label = 'Burgershot Bag', 			
    weight = 5000, 	
    type = 'item', 	
    image = 'bg_burgershot_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Convenient packaging for your meal.'
},
bg_knife                    = {
    name = 'bg_knife', 					
    label = 'Knife', 						
    weight = 500, 	
    type = 'item', 	
    image = 'bg_knife.png', 						
    unique = true, 	
    useable = false, 
    shouldClose = false, 
    combinable = nil,   
    description = 'Knife to cut ingredient.'
},
bg_cheese                   = {
    name = 'bg_cheese', 				
    label = 'Cheese', 					
    weight = 150, 	
    type = 'item', 	
    image = 'bg_cheese.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Melted and creamy dairy delight.'
},
bg_ice                      = {
    name = 'bg_ice', 					
    label = 'Ice', 						
    weight = 100, 	
    type = 'item', 	
    image = 'bg_ice.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chilled and refreshing frozen water.'
},
bg_oil                      = {
    name = 'bg_oil', 					
    label = 'Oil', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_oil.png', 						
    unique = false, 		
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential cooking and flavoring ingredient.'
},


bg_fried_egg                = {
    name = 'bg_fried_egg', 			
    label = 'Fried Egg', 				
    weight = 300, 	
    type = 'item', 	
    image = 'bg_fried_egg.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Delightfully cooked sunny-side-up egg.'
},
bg_egg                      = {
    name = 'bg_egg', 					
    label = 'Egg', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_egg.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile and protein-rich breakfast staple.'
},


bg_cooked_patty             = {
    name = 'bg_cooked_patty', 			
    label = 'Cooked Patty', 			
    weight = 300, 	
    type = 'item', 	
    image = 'bg_cooked_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Perfectly grilled meat patty.'
},
bg_raw_patty                = {
    name = 'bg_raw_patty', 			
    label = 'Raw Patty', 				
    weight = 250, 	
    type = 'item', 	
    image = 'bg_raw_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Uncooked meat patty ready for grilling.'
},


bg_ecola                    = {
    name = 'bg_ecola', 			    
    label = 'Ecola', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_empty                    = {
    name = 'bg_ecola_empty', 			    
    label = 'eCola Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_ecola_light                    = {
    name = 'bg_ecola_light', 			    
    label = 'Ecola Light', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola_light.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_light_empty                    = {
    name = 'bg_ecola_light_empty', 			    
    label = 'eCola Light Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_light_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_drang_o_tang                    = {
    name = 'bg_drang_o_tang', 			    
    label = 'Drang O Tang', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_drang_o_tang.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_drang_o_tang_empty                    = {
    name = 'bg_drang_o_tang_empty', 			    
    label = 'DT Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_drang_o_tang_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_sprunk                    = {
    name = 'bg_sprunk', 			    
    label = 'Sprunk', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_sprunk.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_sprunk_empty                    = {
    name = 'bg_sprunk_empty', 			    
    label = 'Sprunk Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_sprunk_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_water_bootle             = {
    name = 'bg_water_bootle', 			
    label = 'Water Bootle', 			
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_water_bootle.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing hydration in a convenient portable container.'
},
bg_juice_orange             = {
    name = 'bg_juice_orange', 			
    label = 'Juice Orange', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_orange.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_apple             = {
    name = 'bg_juice_apple', 			
    label = 'Juice Apple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_apple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_pineapple             = {
    name = 'bg_juice_pineapple', 			
    label = 'Juice Pineapple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_pineapple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_empty          = {
    name = 'bg_juice_empty', 		
    label = 'Empty Cup', 				
    weight = 500, 	
    type = 'item', 	
    image = 'bg_juice_empty.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Cup for drinks.'
},
bg_destroyed_cup          = {
    name = 'bg_destroyed_cup', 		
    label = 'Destroy Cup', 				
    weight = 200, 	
    type = 'item', 	
    image = 'bg_destroyed_cup.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Destroy cup for drinks.'
},

bg_salt                     = {
    name = 'bg_salt', 					
    label = 'Salt', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_salt.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential seasoning for enhancing flavors.'
},	
bg_ketchup                  = {
    name = 'bg_ketchup', 				
    label = 'Ketchup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ketchup.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Classic tangy tomato-based condiment.'
},
bg_special_sauce               = {
    name = 'bg_special_sauce', 		    
    label = 'Special Sauce', 			    
    weight = 250, 	
    type = 'item', 	
    image = 'bg_special_sauce.png', 			    
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Secret recipe dressing for added flavor.'
},


bg_chopped_potato            = {
    name = 'bg_chopped_potato', 		
    label = 'Chopped Potato', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_potato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Bite-sized pieces of fried potatoes.'
},
bg_chopped_fries       = {
    name = 'bg_chopped_fries', 		
    label = 'Chopped Fries', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_fries.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chopped fries.'
},
bg_chopped_lettuce          = {
    name = 'bg_chopped_lettuce', 		
    label = 'Chopped Lettuce', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_lettuce.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Fresh and crisp leafy greens.'
},
bg_chopped_onion            = {
    name = 'bg_chopped_onion', 		
    label = 'Chopped Onion', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_onion.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Finely diced pungent bulb vegetable.'
},
bg_chopped_pickle           = {
    name = 'bg_chopped_pickle', 		
    label = 'Chopped Pickle', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_pickle.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and crunchy brined cucumber.'
},
bg_chopped_tomato           = {
    name = 'bg_chopped_tomato', 		
    label = 'Chopped Tomato', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_tomato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Ripe and juicy red fruit.'
},
bg_lettuce                  = {
    name = 'bg_lettuce', 				
    label = 'Lettuce', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_lettuce.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Crisp and leafy green vegetable.'
},
bg_onion                    = {
    name = 'bg_onion', 				
    label = 'Onion', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_onion.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Aromatic and flavorful bulb vegetable.'
},
bg_pickle                   = {
    name = 'bg_pickle', 				
    label = 'Pickle', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_pickle.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and briny pickled cucumber.'
},
bg_potato                   = {
    name = 'bg_potato', 				
    label = 'Potato', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_potato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile starchy vegetable for various dishes.'
},
bg_tomato                   = {
    name = 'bg_tomato', 				
    label = 'Tomato', 					
    weight = 250, 	
    type = 'item', 
    image = 'bg_tomato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and vibrant red fruit.'
},


bg_burgershot_fries_box        = {
    name = 'bg_burgershot_fries_box', 		
    label = 'Burgershot Box Fries', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_burgershot_fries_box.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Box fries.'
},


bg_burgershot_fries         = {
    name = 'bg_burgershot_fries', 		
    label = 'Burgershot Fries', 		
    weight = 700, 	
    type = 'item', 	
    image = 'bg_burgershot_fries.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Crispy and delicious potato fries.'
},
bg_bleeder_burger           = {
    name = 'bg_bleeder_burger', 		
    label = 'Bleeder Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bleeder_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and flavorful beef patty.'
},
bg_heart_stopper_burger     = {
    name = 'bg_heart_stopper_burger', 	
    label = 'Heart Stopper Burger', 	
    weight = 700, 	
    type = 'item', 	
    image = 'bg_heart_stopper_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Indulgent and decadent burger choice.'
},
bg_fingle_burger            = {
    name = 'bg_fingle_burger', 		
    label = 'Fingle Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_fingle_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Tasty and satisfying burger option.'
},
bg_meat_free_burger         = {
    name = 'bg_meat_free_burger', 		
    label = 'Meat Free Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_meat_free_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Plant-based alternative patty.'
},
bg_money_shot_burger        = {
    name = 'bg_money_shot_burger', 	
    label = 'Money Shot Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_money_shot_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Luxurious and extravagant burger creation.'
},	


bg_10litr_water        = {
    name = 'bg_10litr_water', 	
    label = '10ltr Water', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_water.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr water.'
},
bg_10litr_apple        = {
    name = 'bg_10litr_apple', 	
    label = '10ltr Apple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_apple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Apple.'
},
bg_10litr_ecola        = {
    name = 'bg_10litr_ecola', 	
    label = '10ltr eCola', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola.png', 		
    unique = true, 	
    useable = false,   
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola.'
},
bg_10litr_ecola_light        = {
    name = 'bg_10litr_ecola_light', 	
    label = '10ltr eCola Light', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola_light.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola Light.'
},
bg_10litr_drang_o_tang        = {
    name = 'bg_10litr_drang_o_tang', 	
    label = '10ltr Drang O Tang', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_drang_o_tang.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Drang O Tang.'
},
bg_10litr_orange        = {
    name = 'bg_10litr_orange', 	
    label = '10ltr Orange', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_orange.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Orange.'
},
bg_10litr_pineapple        = {
    name = 'bg_10litr_pineapple', 	
    label = '10ltr Pineapple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_pineapple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Pineapple.'
},
bg_10litr_sprunk        = {
    name = 'bg_10litr_sprunk', 	
    label = '10ltr Sprunk', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_sprunk.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Sprunk.'
},
bg_sticker        = {
    name = 'bg_sticker', 	
    label = 'BurgerShot Sticker', 		
    weight = 20, 	
    type = 'item', 	
    image = 'bg_sticker.png', 		
    unique = false, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = ''
},
origen_inventory
-- // BurgerShot Items 
bg_bacon                    = {
    name = 'bg_bacon', 				
    label = 'Bacon', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bacon.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Savory crispy strips of meat.'
},
bg_bun                      = {
    name = 'bg_bun', 					
    label = 'Bun', 						
    weight = 250, 	
    type = 'item', 	
    image = 'bg_bun.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Soft and fluffy bread base.'
},
bg_empty_bag           = {
    name = 'bg_empty_bag', 		
    label = 'Empty Bag', 			
    weight = 250, 	
    type = 'item', 	
    image = 'bg_empty_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty bag.'
},
bg_burgershot_bag           = {
    name = 'bg_burgershot_bag', 		
    label = 'Burgershot Bag', 			
    weight = 5000, 	
    type = 'item', 	
    image = 'bg_burgershot_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Convenient packaging for your meal.'
},
bg_knife                    = {
    name = 'bg_knife', 					
    label = 'Knife', 						
    weight = 500, 	
    type = 'item', 	
    image = 'bg_knife.png', 						
    unique = true, 	
    useable = false, 
    shouldClose = false, 
    combinable = nil,   
    description = 'Knife to cut ingredient.'
},
bg_cheese                   = {
    name = 'bg_cheese', 				
    label = 'Cheese', 					
    weight = 150, 	
    type = 'item', 	
    image = 'bg_cheese.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Melted and creamy dairy delight.'
},
bg_ice                      = {
    name = 'bg_ice', 					
    label = 'Ice', 						
    weight = 100, 	
    type = 'item', 	
    image = 'bg_ice.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chilled and refreshing frozen water.'
},
bg_oil                      = {
    name = 'bg_oil', 					
    label = 'Oil', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_oil.png', 						
    unique = false, 		
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential cooking and flavoring ingredient.'
},


bg_fried_egg                = {
    name = 'bg_fried_egg', 			
    label = 'Fried Egg', 				
    weight = 300, 	
    type = 'item', 	
    image = 'bg_fried_egg.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Delightfully cooked sunny-side-up egg.'
},
bg_egg                      = {
    name = 'bg_egg', 					
    label = 'Egg', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_egg.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile and protein-rich breakfast staple.'
},


bg_cooked_patty             = {
    name = 'bg_cooked_patty', 			
    label = 'Cooked Patty', 			
    weight = 300, 	
    type = 'item', 	
    image = 'bg_cooked_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Perfectly grilled meat patty.'
},
bg_raw_patty                = {
    name = 'bg_raw_patty', 			
    label = 'Raw Patty', 				
    weight = 250, 	
    type = 'item', 	
    image = 'bg_raw_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Uncooked meat patty ready for grilling.'
},


bg_ecola                    = {
    name = 'bg_ecola', 			    
    label = 'Ecola', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_empty                    = {
    name = 'bg_ecola_empty', 			    
    label = 'eCola Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_ecola_light                    = {
    name = 'bg_ecola_light', 			    
    label = 'Ecola Light', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola_light.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_light_empty                    = {
    name = 'bg_ecola_light_empty', 			    
    label = 'eCola Light Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_light_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_drang_o_tang                    = {
    name = 'bg_drang_o_tang', 			    
    label = 'Drang O Tang', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_drang_o_tang.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_drang_o_tang_empty                    = {
    name = 'bg_drang_o_tang_empty', 			    
    label = 'DT Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_drang_o_tang_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_sprunk                    = {
    name = 'bg_sprunk', 			    
    label = 'Sprunk', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_sprunk.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_sprunk_empty                    = {
    name = 'bg_sprunk_empty', 			    
    label = 'Sprunk Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_sprunk_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_water_bootle             = {
    name = 'bg_water_bootle', 			
    label = 'Water Bootle', 			
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_water_bootle.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing hydration in a convenient portable container.'
},
bg_juice_orange             = {
    name = 'bg_juice_orange', 			
    label = 'Juice Orange', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_orange.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_apple             = {
    name = 'bg_juice_apple', 			
    label = 'Juice Apple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_apple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_pineapple             = {
    name = 'bg_juice_pineapple', 			
    label = 'Juice Pineapple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_pineapple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_empty          = {
    name = 'bg_juice_empty', 		
    label = 'Empty Cup', 				
    weight = 500, 	
    type = 'item', 	
    image = 'bg_juice_empty.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Cup for drinks.'
},
bg_destroyed_cup          = {
    name = 'bg_destroyed_cup', 		
    label = 'Destroy Cup', 				
    weight = 200, 	
    type = 'item', 	
    image = 'bg_destroyed_cup.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Destroy cup for drinks.'
},

bg_salt                     = {
    name = 'bg_salt', 					
    label = 'Salt', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_salt.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential seasoning for enhancing flavors.'
},	
bg_ketchup                  = {
    name = 'bg_ketchup', 				
    label = 'Ketchup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ketchup.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Classic tangy tomato-based condiment.'
},
bg_special_sauce               = {
    name = 'bg_special_sauce', 		    
    label = 'Special Sauce', 			    
    weight = 250, 	
    type = 'item', 	
    image = 'bg_special_sauce.png', 			    
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Secret recipe dressing for added flavor.'
},


bg_chopped_potato            = {
    name = 'bg_chopped_potato', 		
    label = 'Chopped Potato', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_potato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Bite-sized pieces of fried potatoes.'
},
bg_chopped_fries       = {
    name = 'bg_chopped_fries', 		
    label = 'Chopped Fries', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_fries.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chopped fries.'
},
bg_chopped_lettuce          = {
    name = 'bg_chopped_lettuce', 		
    label = 'Chopped Lettuce', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_lettuce.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Fresh and crisp leafy greens.'
},
bg_chopped_onion            = {
    name = 'bg_chopped_onion', 		
    label = 'Chopped Onion', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_onion.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Finely diced pungent bulb vegetable.'
},
bg_chopped_pickle           = {
    name = 'bg_chopped_pickle', 		
    label = 'Chopped Pickle', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_pickle.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and crunchy brined cucumber.'
},
bg_chopped_tomato           = {
    name = 'bg_chopped_tomato', 		
    label = 'Chopped Tomato', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_tomato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Ripe and juicy red fruit.'
},
bg_lettuce                  = {
    name = 'bg_lettuce', 				
    label = 'Lettuce', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_lettuce.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Crisp and leafy green vegetable.'
},
bg_onion                    = {
    name = 'bg_onion', 				
    label = 'Onion', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_onion.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Aromatic and flavorful bulb vegetable.'
},
bg_pickle                   = {
    name = 'bg_pickle', 				
    label = 'Pickle', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_pickle.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and briny pickled cucumber.'
},
bg_potato                   = {
    name = 'bg_potato', 				
    label = 'Potato', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_potato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile starchy vegetable for various dishes.'
},
bg_tomato                   = {
    name = 'bg_tomato', 				
    label = 'Tomato', 					
    weight = 250, 	
    type = 'item', 
    image = 'bg_tomato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and vibrant red fruit.'
},


bg_burgershot_fries_box        = {
    name = 'bg_burgershot_fries_box', 		
    label = 'Burgershot Box Fries', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_burgershot_fries_box.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Box fries.'
},


bg_burgershot_fries         = {
    name = 'bg_burgershot_fries', 		
    label = 'Burgershot Fries', 		
    weight = 700, 	
    type = 'item', 	
    image = 'bg_burgershot_fries.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Crispy and delicious potato fries.'
},
bg_bleeder_burger           = {
    name = 'bg_bleeder_burger', 		
    label = 'Bleeder Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bleeder_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and flavorful beef patty.'
},
bg_heart_stopper_burger     = {
    name = 'bg_heart_stopper_burger', 	
    label = 'Heart Stopper Burger', 	
    weight = 700, 	
    type = 'item', 	
    image = 'bg_heart_stopper_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Indulgent and decadent burger choice.'
},
bg_fingle_burger            = {
    name = 'bg_fingle_burger', 		
    label = 'Fingle Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_fingle_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Tasty and satisfying burger option.'
},
bg_meat_free_burger         = {
    name = 'bg_meat_free_burger', 		
    label = 'Meat Free Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_meat_free_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Plant-based alternative patty.'
},
bg_money_shot_burger        = {
    name = 'bg_money_shot_burger', 	
    label = 'Money Shot Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_money_shot_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Luxurious and extravagant burger creation.'
},	


bg_10litr_water        = {
    name = 'bg_10litr_water', 	
    label = '10ltr Water', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_water.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr water.'
},
bg_10litr_apple        = {
    name = 'bg_10litr_apple', 	
    label = '10ltr Apple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_apple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Apple.'
},
bg_10litr_ecola        = {
    name = 'bg_10litr_ecola', 	
    label = '10ltr eCola', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola.png', 		
    unique = true, 	
    useable = false,   
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola.'
},
bg_10litr_ecola_light        = {
    name = 'bg_10litr_ecola_light', 	
    label = '10ltr eCola Light', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola_light.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola Light.'
},
bg_10litr_drang_o_tang        = {
    name = 'bg_10litr_drang_o_tang', 	
    label = '10ltr Drang O Tang', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_drang_o_tang.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Drang O Tang.'
},
bg_10litr_orange        = {
    name = 'bg_10litr_orange', 	
    label = '10ltr Orange', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_orange.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Orange.'
},
bg_10litr_pineapple        = {
    name = 'bg_10litr_pineapple', 	
    label = '10ltr Pineapple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_pineapple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Pineapple.'
},
bg_10litr_sprunk        = {
    name = 'bg_10litr_sprunk', 	
    label = '10ltr Sprunk', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_sprunk.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Sprunk.'
},
bg_sticker        = {
    name = 'bg_sticker', 	
    label = 'BurgerShot Sticker', 		
    weight = 20, 	
    type = 'item', 	
    image = 'bg_sticker.png', 		
    unique = false, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = ''
},
codem-inventory

Add this item in into codem-inventory/config/itemlist.lua

-- // BurgerShot Items 
bg_bacon                    = {
    name = 'bg_bacon', 				
    label = 'Bacon', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bacon.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Savory crispy strips of meat.'
},
bg_bun                      = {
    name = 'bg_bun', 					
    label = 'Bun', 						
    weight = 250, 	
    type = 'item', 	
    image = 'bg_bun.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Soft and fluffy bread base.'
},
bg_empty_bag           = {
    name = 'bg_empty_bag', 		
    label = 'Empty Bag', 			
    weight = 250, 	
    type = 'item', 	
    image = 'bg_empty_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty bag.'
},
bg_burgershot_bag           = {
    name = 'bg_burgershot_bag', 		
    label = 'Burgershot Bag', 			
    weight = 5000, 	
    type = 'item', 	
    image = 'bg_burgershot_bag.png', 			
    unique = true, 		
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Convenient packaging for your meal.'
},
bg_knife                    = {
    name = 'bg_knife', 					
    label = 'Knife', 						
    weight = 500, 	
    type = 'item', 	
    image = 'bg_knife.png', 						
    unique = true, 	
    useable = false, 
    shouldClose = false, 
    combinable = nil,   
    description = 'Knife to cut ingredient.'
},
bg_cheese                   = {
    name = 'bg_cheese', 				
    label = 'Cheese', 					
    weight = 150, 	
    type = 'item', 	
    image = 'bg_cheese.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Melted and creamy dairy delight.'
},
bg_ice                      = {
    name = 'bg_ice', 					
    label = 'Ice', 						
    weight = 100, 	
    type = 'item', 	
    image = 'bg_ice.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chilled and refreshing frozen water.'
},
bg_oil                      = {
    name = 'bg_oil', 					
    label = 'Oil', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_oil.png', 						
    unique = false, 		
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential cooking and flavoring ingredient.'
},


bg_fried_egg                = {
    name = 'bg_fried_egg', 			
    label = 'Fried Egg', 				
    weight = 300, 	
    type = 'item', 	
    image = 'bg_fried_egg.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Delightfully cooked sunny-side-up egg.'
},
bg_egg                      = {
    name = 'bg_egg', 					
    label = 'Egg', 						
    weight = 300, 	
    type = 'item', 	
    image = 'bg_egg.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile and protein-rich breakfast staple.'
},


bg_cooked_patty             = {
    name = 'bg_cooked_patty', 			
    label = 'Cooked Patty', 			
    weight = 300, 	
    type = 'item', 	
    image = 'bg_cooked_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Perfectly grilled meat patty.'
},
bg_raw_patty                = {
    name = 'bg_raw_patty', 			
    label = 'Raw Patty', 				
    weight = 250, 	
    type = 'item', 	
    image = 'bg_raw_patty.png', 				
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Uncooked meat patty ready for grilling.'
},


bg_ecola                    = {
    name = 'bg_ecola', 			    
    label = 'Ecola', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_empty                    = {
    name = 'bg_ecola_empty', 			    
    label = 'eCola Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_ecola_light                    = {
    name = 'bg_ecola_light', 			    
    label = 'Ecola Light', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_ecola_light.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_ecola_light_empty                    = {
    name = 'bg_ecola_light_empty', 			    
    label = 'eCola Light Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ecola_light_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_drang_o_tang                    = {
    name = 'bg_drang_o_tang', 			    
    label = 'Drang O Tang', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_drang_o_tang.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_drang_o_tang_empty                    = {
    name = 'bg_drang_o_tang_empty', 			    
    label = 'DT Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_drang_o_tang_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_sprunk                    = {
    name = 'bg_sprunk', 			    
    label = 'Sprunk', 					
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_sprunk.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing carbonated beverage.'
},
bg_sprunk_empty                    = {
    name = 'bg_sprunk_empty', 			    
    label = 'Sprunk Empty Cup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_sprunk_empty.png', 				
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Empty Cup.'
},
bg_water_bootle             = {
    name = 'bg_water_bootle', 			
    label = 'Water Bootle', 			
    weight = 1000, 	
    type = 'item', 	
    image = 'bg_water_bootle.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing hydration in a convenient portable container.'
},
bg_juice_orange             = {
    name = 'bg_juice_orange', 			
    label = 'Juice Orange', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_orange.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_apple             = {
    name = 'bg_juice_apple', 			
    label = 'Juice Apple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_apple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_pineapple             = {
    name = 'bg_juice_pineapple', 			
    label = 'Juice Pineapple', 			
    weight = 1250, 	
    type = 'item', 	
    image = 'bg_juice_pineapple.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Refreshing beverage.'
},
bg_juice_empty          = {
    name = 'bg_juice_empty', 		
    label = 'Empty Cup', 				
    weight = 500, 	
    type = 'item', 	
    image = 'bg_juice_empty.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Cup for drinks.'
},
bg_destroyed_cup          = {
    name = 'bg_destroyed_cup', 		
    label = 'Destroy Cup', 				
    weight = 200, 	
    type = 'item', 	
    image = 'bg_destroyed_cup.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Destroy cup for drinks.'
},

bg_salt                     = {
    name = 'bg_salt', 					
    label = 'Salt', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_salt.png', 						
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Essential seasoning for enhancing flavors.'
},	
bg_ketchup                  = {
    name = 'bg_ketchup', 				
    label = 'Ketchup', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_ketchup.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Classic tangy tomato-based condiment.'
},
bg_special_sauce               = {
    name = 'bg_special_sauce', 		    
    label = 'Special Sauce', 			    
    weight = 250, 	
    type = 'item', 	
    image = 'bg_special_sauce.png', 			    
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Secret recipe dressing for added flavor.'
},


bg_chopped_potato            = {
    name = 'bg_chopped_potato', 		
    label = 'Chopped Potato', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_potato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Bite-sized pieces of fried potatoes.'
},
bg_chopped_fries       = {
    name = 'bg_chopped_fries', 		
    label = 'Chopped Fries', 			
    weight = 150, 	
    type = 'item', 	
    image = 'bg_chopped_fries.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Chopped fries.'
},
bg_chopped_lettuce          = {
    name = 'bg_chopped_lettuce', 		
    label = 'Chopped Lettuce', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_lettuce.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Fresh and crisp leafy greens.'
},
bg_chopped_onion            = {
    name = 'bg_chopped_onion', 		
    label = 'Chopped Onion', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_onion.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Finely diced pungent bulb vegetable.'
},
bg_chopped_pickle           = {
    name = 'bg_chopped_pickle', 		
    label = 'Chopped Pickle', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_pickle.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and crunchy brined cucumber.'
},
bg_chopped_tomato           = {
    name = 'bg_chopped_tomato', 		
    label = 'Chopped Tomato', 			
    weight = 50, 	
    type = 'item', 	
    image = 'bg_chopped_tomato.png', 			
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Ripe and juicy red fruit.'
},
bg_lettuce                  = {
    name = 'bg_lettuce', 				
    label = 'Lettuce', 					
    weight = 500, 	
    type = 'item', 	
    image = 'bg_lettuce.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Crisp and leafy green vegetable.'
},
bg_onion                    = {
    name = 'bg_onion', 				
    label = 'Onion', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_onion.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Aromatic and flavorful bulb vegetable.'
},
bg_pickle                   = {
    name = 'bg_pickle', 				
    label = 'Pickle', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_pickle.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Tangy and briny pickled cucumber.'
},
bg_potato                   = {
    name = 'bg_potato', 				
    label = 'Potato', 					
    weight = 250, 	
    type = 'item', 	
    image = 'bg_potato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Versatile starchy vegetable for various dishes.'
},
bg_tomato                   = {
    name = 'bg_tomato', 				
    label = 'Tomato', 					
    weight = 250, 	
    type = 'item', 
    image = 'bg_tomato.png', 					
    unique = false, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and vibrant red fruit.'
},


bg_burgershot_fries_box        = {
    name = 'bg_burgershot_fries_box', 		
    label = 'Burgershot Box Fries', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_burgershot_fries_box.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Box fries.'
},


bg_burgershot_fries         = {
    name = 'bg_burgershot_fries', 		
    label = 'Burgershot Fries', 		
    weight = 700, 	
    type = 'item', 	
    image = 'bg_burgershot_fries.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Crispy and delicious potato fries.'
},
bg_bleeder_burger           = {
    name = 'bg_bleeder_burger', 		
    label = 'Bleeder Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_bleeder_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Juicy and flavorful beef patty.'
},
bg_heart_stopper_burger     = {
    name = 'bg_heart_stopper_burger', 	
    label = 'Heart Stopper Burger', 	
    weight = 700, 	
    type = 'item', 	
    image = 'bg_heart_stopper_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Indulgent and decadent burger choice.'
},
bg_fingle_burger            = {
    name = 'bg_fingle_burger', 		
    label = 'Fingle Burger', 			
    weight = 500, 	
    type = 'item', 	
    image = 'bg_fingle_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Tasty and satisfying burger option.'
},
bg_meat_free_burger         = {
    name = 'bg_meat_free_burger', 		
    label = 'Meat Free Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_meat_free_burger.png', 			
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Plant-based alternative patty.'
},
bg_money_shot_burger        = {
    name = 'bg_money_shot_burger', 	
    label = 'Money Shot Burger', 		
    weight = 500, 	
    type = 'item', 	
    image = 'bg_money_shot_burger.png', 		
    unique = false, 	
    useable = true,  
    shouldClose = true, 
    combinable = nil,   
    description = 'Luxurious and extravagant burger creation.'
},	


bg_10litr_water        = {
    name = 'bg_10litr_water', 	
    label = '10ltr Water', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_water.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr water.'
},
bg_10litr_apple        = {
    name = 'bg_10litr_apple', 	
    label = '10ltr Apple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_apple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Apple.'
},
bg_10litr_ecola        = {
    name = 'bg_10litr_ecola', 	
    label = '10ltr eCola', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola.png', 		
    unique = true, 	
    useable = false,   
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola.'
},
bg_10litr_ecola_light        = {
    name = 'bg_10litr_ecola_light', 	
    label = '10ltr eCola Light', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_ecola_light.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr eCola Light.'
},
bg_10litr_drang_o_tang        = {
    name = 'bg_10litr_drang_o_tang', 	
    label = '10ltr Drang O Tang', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_drang_o_tang.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Drang O Tang.'
},
bg_10litr_orange        = {
    name = 'bg_10litr_orange', 	
    label = '10ltr Orange', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_orange.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Orange.'
},
bg_10litr_pineapple        = {
    name = 'bg_10litr_pineapple', 	
    label = '10ltr Pineapple', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_pineapple.png', 		
    unique = true, 	
    useable = false, 
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Pineapple.'
},
bg_10litr_sprunk        = {
    name = 'bg_10litr_sprunk', 	
    label = '10ltr Sprunk', 		
    weight = 10000, 	
    type = 'item', 	
    image = 'bg_10litr_sprunk.png', 		
    unique = true, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = '10 litr Sprunk.'
},
bg_sticker        = {
    name = 'bg_sticker', 	
    label = 'BurgerShot Sticker', 		
    weight = 20, 	
    type = 'item', 	
    image = 'bg_sticker.png', 		
    unique = false, 	
    useable = false,  
    shouldClose = true, 
    combinable = nil,   
    description = ''
},

Unzip and drop the image inside folder images in inventory.

Step 4: Only for qb-inventory v2 users

Required to add this function in qb-inventory/server/functions.lua in bottom file.

local function ClearInventoryStash(identifier)
    local inventory = Inventories[identifier]
    if not inventory then return end
    inventory.items = {}
    inventory.isOpen = false
end

exports('ClearInventoryStash', ClearInventoryStash)

Step 5: Setup Config

Go to sf_burgershot/config.lua file and start setup, everything explained there.

Step 6: Ensure Resource

This is last step and is easier, just drag and drop the folder into your main resources, if folder you drag him is inside sub folder and this sub folder already started everything ok, if not need to go server.cfjand add this command ensure sf_burgershot.

๐Ÿ”
Release v2.5.2 ยท overextended/oxmysqlGitHub
latest release version of oxmysql
Release v3.14.0 ยท overextended/ox_libGitHub
latest release version of ox_lib
Release xSound 1.4.3 ยท Xogy/xsoundGitHub
latest release version of xsound
Logo
Logo
433KB
image-items.zip
archive
Logo