Installation
Step 1 - File Ordering
ensure s-JobSuite-props
ensure s-JobSuiteStep 2 - Adding Items
Below, the required item information for qb-inventory, ox-inventory, and codem-inventory is provided in tables.
For qb-inventory, items are located in qbcore/shared/items.lua
qbcore/shared/items.luaQBShared.Items = {
orange = { name = 'orange', label = 'Orange', weight = 400, type = 'item', image = 'orange.png', unique = false, useable = false, shouldClose = true, description = 'A fresh and juicy orange, perfect for a healthy snack.' },
packed_orange = { name = 'packed_orange', label = 'Packed Orange', weight = 600, type = 'item', image = 'packed_orange.png', unique = false, useable = true, shouldClose = true, description = 'A neatly packed orange, ready to eat or sell.' },
orange_juice = { name = 'orange_juice', label = 'Orange Juice', weight = 400, type = 'item', image = 'orange_juice.png', unique = false, useable = true, shouldClose = true, description = 'A refreshing glass of freshly squeezed orange juice.'},
tomato = { name = 'tomato', label = 'Tomato', weight = 300, type = 'item', image = 'tomato.png', unique = false, useable = false, shouldClose = true, description = 'A fresh and ripe tomato, great for cooking or salads.' },
packed_tomato = { name = 'packed_tomato', label = 'Packed Tomato', weight = 300, type = 'item', image = 'packed_tomato.png', unique = false, useable = false, shouldClose = true, description = 'A neatly packed ripe tomato, ideal for storage or transport.' },
ketchup = { name = 'ketchup', label = 'Ketchup', weight = 500, type = 'item', image = 'ketchup.png', unique = false, useable = true, shouldClose = true, description = 'A delicious bottle of ketchup made from fresh tomatoes.' },
apple = { name = 'apple', label = 'Apple', weight = 350, type = 'item', image = 'apple.png', unique = false, useable = false, shouldClose = true, description = 'A crisp and sweet apple, perfect for a snack.' },
packed_apple = { name = 'packed_apple', label = 'Packed Apple', weight = 350, type = 'item', image = 'packed_apple.png', unique = false, useable = false, shouldClose = true, description = 'A neatly packed apple, ideal for transport or storage.' },
apple_juice = { name = 'apple_juice', label = 'Apple Juice', weight = 550, type = 'item', image = 'apple_juice.png', unique = false, useable = true, shouldClose = true, description = 'A refreshing bottle of apple juice made from real apples.' },
lemon = { name = 'lemon', label = 'Lemon', weight = 250, type = 'item', image = 'lemon.png', unique = false, useable = false, shouldClose = true, description = 'A sour and tangy lemon, perfect for drinks or cooking.' },
packed_lemon = { name = 'packed_lemon', label = 'Packed Lemon', weight = 250, type = 'item', image = 'packed_lemon.png', unique = false, useable = false, shouldClose = true, description = 'A neatly packed lemon, ideal for transport or storage.' },
lemonade = { name = 'lemonade', label = 'Lemonade', weight = 500, type = 'item', image = 'lemonade.png', unique = false, useable = true, shouldClose = true, description = 'A freshly squeezed glass of lemonade, perfect for a hot day.' },
grape = { name = 'grape', label = 'Grape', weight = 300, type = 'item', image = 'grape.png', unique = false, useable = false, shouldClose = true, description = 'Fresh and sweet grapes, perfect for snacking.' },
packed_grape = { name = 'packed_grape', label = 'Packed Grape', weight = 350, type = 'item', image = 'packed_grape.png', unique = false, useable = false, shouldClose = true, description = 'A neatly packed bunch of grapes, ideal for transport or storage.' },
grape_juice = { name = 'grape_juice', label = 'Grape Juice', weight = 450, type = 'item', image = 'grape_juice.png', unique = false, useable = true, shouldClose = true, description = 'A refreshing bottle of grape juice made from fresh grapes.' },
}For ox-inventory, items are located in ox_inventory/data/items.lua
ox_inventory/data/items.luaFor codem-inventory, items are located in config/itemlist.lua
config/itemlist.luaStep 3 - Adding Item Images
Installation Complete
Last updated