Inventory
rcore_housing works with all of the most common inventory resources. The inventory bridge supplies item give/take, stash containers, and item-existence checks.
🔎 Auto Detection
Config.Inventory = AUTO_DETECTAuto-detection priority (first match wins): qs-inventory → ox_inventory → qb-inventory → ESX native, falling back to any other supported inventory that is running.
Override with the matching constant if detection picks the wrong one:
Inventory.OX
ox_inventory
Inventory.QBCORE
qb-inventory
Inventory.QS
qs-inventory
Inventory.PS
ps-inventory
Inventory.CODEM
codem-inventory
Inventory.CORE
core_inventory
Inventory.JAKSAM
jaksam_inventory
Inventory.ORIGEN
origen_inventory
Inventory.TGIANN
tgiann-inventory
Inventory.ONE
one-inventory
Inventory.ESX
ESX native
🎒 Required Items
Add these items to your inventory resource:
Property key
property_key
Physical key (when Config.Keys.UseKeysOnItem = true).
Lockpick
lockpick
Required to lockpick a property door.
Battering ram
battering_ram
Required for police breach.
Warrant
warrant
Required for raids when Config.Warrant.Enable = true.
Override item names in Config.Items - see main config.
🧩 Per-Inventory Setup
Resource: ox_inventory
Add to data/items.lua:
The resource also uses ox_inventory stashes when a furniture interaction (storage, fridge, safe) is opened.
Resource: qb-inventory
Add to qb-core/shared/items.lua:
Resource: qs-inventory
Add to your QS items list with the same names as above. QS uses the same shape as QBCore.
Resource: ESX-bundled inventory
Insert the items into your items table:
Resource: ps-inventory
Add the four items to ps-inventory's items list (QBCore item shape - same as the qb-inventory tab). Stash containers for furniture interactions are handled through the ps-inventory stash API.
Resource: codem-inventory
Register the four items in codem-inventory's items config using the standard name / label / weight shape. Furniture storage opens as a codem-inventory stash.
Resource: core_inventory
Add the items to core_inventory and copy the item images. Stashes are opened through the core_inventory stash exports.
Resource: jaksam_inventory (inventory by Jaksam)
Define the four items in the Jaksam inventory items list. Furniture interactions route to Jaksam stashes.
Resource: origen_inventory
Add the items to origen_inventory's item registry. Property storage opens through the origen stash API.
Resource: tgiann-inventory
Add the items to tgiann-inventory. The bridge uses tgiann stashes for storage / fridge / safe furniture interactions.
📦 Inventory Images
Inventory images for the four items ship inside rcore_housing_assets/inventory_images/. Copy them to your inventory's image directory.
Last updated