πŸ‘¨β€πŸ’»Items & Aamin Tools

Essential items and utility tools required for Store Robbery.

πŸ“¦ Required Items (QB / QBX)

Add these items to: qb-core/shared/items.lua (Not qb-inventory)

-- Store Robbery Items
['sr_bundle'] = {
    name = 'sr_bundle',
    label = 'Heist Bundle',
    weight = 1,
    type = 'item',
    image = 'sr_bundle.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Packaged loot from a store robbery'
},

['hacking_laptop'] = {
    name = 'hacking_laptop',
    label = 'Hacking Laptop',
    weight = 2500,
    type = 'item',
    image = 'hacking_laptop.png',
    unique = false,
    useable = true,
    shouldClose = true,
    description = 'Used to start night robberies'
},

πŸ“Œ Notes

  • Make sure the item names match exactly in your config.

  • Restart qb-core after adding items.


πŸ“¦ Required Items (ESX / OX Inventory)

Add to: ox_inventory/data/items.lua (ESX w/ OX) or your ESX item file.


πŸ›  Admin Tools

πŸŽ› Hacking Laptop (Spawn)

  • Gives the laptop required for night robberies.

πŸ—‘ Cleanup Tools

  • Stops active robberies and resets the area.

🧹 Bundle Cleanup

  • Deletes all expired bundles from all players.


πŸ—„ Archive Tools

  • Check & clean stored robbery archives.


πŸ” Monitoring Tools

  • Shows active robberies + police count.

Last updated