Installation
Add the following lines to your es_extended -> config.lua Replace with Config.StartingInventoryItems = false
Config.StartingInventoryItems = {
starter_pack = 1,
}If ox_inventory add this item to your ox_inventory -> data -> items.lua
["starter_pack"] = {
label = "Starter Pack",
weight = 3,
stack = true,
close = false,
description = "Starter Pack",
client = {
image = "starter_pack.png",
}
},Add this line to qb-core -> shared -> main.lua
QBShared.StarterItems = {
['starter_pack'] = { amount = 1, item = 'starter_pack' },
}Add this item to qb-core -> shared -> items.lua
starter_pack= { name = 'starter_pack', label = 'Starter pack', weight = 300, type = 'item', image = 'starter_pack.png', unique = true, useable = true, shouldClose = false, description = "starter pack item" },Last updated