Is there a limit to adding custom store items?

Im trying to add more alcohol and beer to the liquor store but cant. The client wont open until I remove the new addons. Also do the 24/7 stores have a max of items that it will display because I didnt see half of what I added.

That entirely depends on the framework, I’d advise you to ask in the respective Discord servers.

Its QB Core, I should mentioned that, but regardless I’m just trying to see if its a cap on custom items in stores

There shouldn’t be any cap, at least not generally - frameworks may have it set up that way for whatever reason, usually due to lazy UI design that only fit X items at once, but you can work around that with enough expertise

you are probably missing a ; somewhere in your item list in qb-shops
make sure that you add the items to the qb-core/shared/items.lua
if you are trying to add entirely new products, you will have to create a usable item in qb-smallresources
maybe post your edited list here for me to review

Yeah if you give me a bit I’ll just post a video.
I followed the same basic principles when adding new custom items, its just once I get to a certain number or “item slots”, the new items will not show up, or not allow me in game

Dont mind the jumping in the video…Medal has been acting up and changed my custom settings to something I didnt even select

removed


– Eat ITEMS
bacon_cheeseburger = { name = ‘bacon_cheeseburger’, label = ‘Bacon Cheeseburger’, weight = 200, type = ‘item’, image = ‘bacon_cheeseburger.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Nice to eat’ },
bltsandwich = { name = ‘bltsandwich’, label = ‘BLT’, weight = 150, type = ‘item’, image = ‘bltsandwich.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘A delicious BLT :O’ },
chicken_fajita = { name = ‘chicken_fajita’, label = ‘Chicken Fajita Wrap’, weight = 100, type = ‘item’, image = ‘chicken_fajita.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Chicken Failta Wrap :O’ },
hotdog = { name = ‘hotdog’, label = ‘hotdog’, weight = 150, type = ‘item’, image = ‘hotdog.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Hot Dog’ },
chilli_dog = { name = ‘chilli_dog’, label = ‘Chilli Dog’, weight = 150, type = ‘item’, image = ‘chilli_dog.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Chilli Dogs are delicious’ },
tunasandwich = { name = ‘tunasandwich’, label = ‘Tuna Melt’, weight = 150, type = ‘item’, image = ‘tunasandwich.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Tuna Melts rule the world’ },
hamcheesesandwich = { name = ‘hamcheesesandwich’, label = ‘Ham and Cheese’, weight = 150, type = ‘item’, image = ‘hamcheesesandwich.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Ham and Cheese’ },
sloppy_joe = { name = ‘sloppy_joe’, label = ‘Sloppy Joe’, weight = 150, type = ‘item’, image = ‘sloppy_joe.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Sloppy Joe’ },
turkey_breast_and_cheese = { name = ‘turkey_breast_and_cheese’, label = ‘Turkey and Cheese’, weight = 150, type = ‘item’, image = ‘turkey_breast_and_cheese.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Turkey and Cheese’ },
cheetos = { name = ‘cheetos’, label = ‘cheetos’, weight = 150, type = ‘item’, image = ‘cheetos1.png’, unique = false, useable = true, shouldClose = true, combinable = nil, description = ‘Cheetos are delicious’ },

-- Drink ITEMS
mcdorangefanta               = { name = 'mcdorangefanta', label = 'Orange Fanta', weight = 175, type = 'item', image = 'mcdorangefanta.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Orange Fanta' },
gatorade                     = { name = 'gatorade', label = 'Gatorade', weight = 200, type = 'item', image = 'gatorade.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Gatorade' },
cocacola                     = { name = 'cocacola', label = 'Coca Cola', weight = 500, type = 'item', image = 'cocacola.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'For all the thirsty out there' },

-- Alcohol

henny                        = { name = 'henny', label = 'Hennessy', weight = 200, type = 'item', image = 'henny.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Hennessy is as smooth as can be' },
absolute_vodka               = { name = 'absolute_vodka', label = 'Absolute Vodka', weight = 200, type = 'item', image = 'absolute_vodka.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'For all the thirsty out there' },
md2020                       = { name = 'md2020', label = 'Mad Dog 2020', weight = 200, type = 'item', image = 'md2020.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = 'Who trynna get fucked up ?' },
olde                         = { name = 'olde', label = 'Old English 800', weight = 200, type = 'item', image = 'olde.png', unique = false, useable = true, shouldClose = false, combinable = nil, description = '8 BALL ?' },

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.