# ox\_inventory

What to do in ox\_inventory:

Inside the png folder of the script you will find png's for the items whichc you could use if desired.

If you want to use the images drag and drop the png's into your ox\_inventory\web\images folder.

Add these entries inside items.lua (ox\_inventory/data/items.lua).<br>

```
['safe_tier_1'] = {
    label = 'Basic Safe',
    description = 'A basic secure storage safe',    
    weight = 10000,
    stack = false,
    close = true,
    consume = 0,
    server = { export = 'yy-secure-safes.useSafe' },
    client = { export = 'yy-secure-safes.useSafe' }
},

['safe_tier_2'] = {
    label = 'Advanced Safe',
    description = 'Advanced security safe with better protection',
    weight = 12000,
    stack = false,
    close = true,
    consume = 0,
    server = { export = 'yy-secure-safes.useSafe' },
    client = { export = 'yy-secure-safes.useSafe' }
},

['safe_tier_3'] = {
    label = 'Professional Safe',
    description = 'Professional-grade security safe',
    weight = 15000,
    stack = false,
    close = true,
    consume = 0,
    server = { export = 'yy-secure-safes.useSafe' },
    client = { export = 'yy-secure-safes.useSafe' }
},

['safe_tier_4'] = {
    label = 'Elite Safe',
    description = 'Top-tier security safe with maximum protection',
    weight = 17000,
    stack = false,
    close = true,
    consume = 0,
    server = { export = 'yy-secure-safes.useSafe' },
    client = { export = 'yy-secure-safes.useSafe' }
},

['hackingtool'] = {
    label = 'Hacking Tool',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Used to hack safes'
},

['drill'] = {
    label = 'Drill',
    weight = 5000,
    stack = true,
    close = true,
    description = 'Used to drill safes'
},

['safe_lockkit'] = {
    label = 'Safe Lock Kit',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Re-lock a breached safe'
},

['safe_key_blank'] = {
    label = 'Blank Safe Key',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Used to craft a safe key'
},

['safe_key'] = {
    label = 'Safe Key',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Unlocks a safe without the code'
},

['safe_upgrade_tier_1'] = {
    label = 'Safe Upgrade Tier 1',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Increases safe capacity (tier 1)'
},

['safe_upgrade_tier_2'] = {
    label = 'Safe Upgrade Tier 2',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Increases safe capacity (tier 2)'
},

['safe_upgrade_tier_3'] = {
    label = 'Safe Upgrade Tier 3',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Increases safe capacity (tier 3)'
},

['safe_upgrade_tier_4'] = {
    label = 'Safe Upgrade Tier 4',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Increases safe capacity (tier 4)'
},

['safe_vault_seal'] = {
    label = 'Vault Seal Kit',
    weight = 5000,
    stack = true,
    close = true,
    description = 'Temporarily disables breach attempts on a safe'
},

['safe_anti_drill'] = {
    label = 'Anti-Drill Plate',
    weight = 5000,
    stack = true,
    close = true,
    description = 'Blocks drilling attempts on a safe'
},

['safe_alarm_module'] = {
    label = 'Safe Alarm Module',
    weight = 1000,
    stack = true,
    close = true,
    description = 'Arms a safe with a breach alarm'
},
```
