Skip to content

OX Inventory

  • 120+ High-Quality Add-On Weapons including Diamond and Custom Variants
  • Complete Weapon Management System with crafting, materials, and inventory integration
  • Full Business Solution with job grades, accounts, and shop functionality
  • Advanced Management Tools including boss menu, stock control, and money laundering
  • Premium MLO Integration for weapon crafting and retail operations
  • Place vvsgunpack and vvsgunpack2 folder in your resources directory
  • Place ars_vvsguns script folder in your resources directory
  • Add both to your server.cfg using ensure vvsgunpack, ensure vvsgunpack2 and ensure ars_vvsguns
  • ⚠️ CRITICAL: Both resources must be running for full functionality
  • Copy all weapon images to ox_inventory\web\images
  • Ensure proper naming convention matches item IDs
  • Add the weapons data to ox_inventory\data\weapons.lua under the Weapons = { section
  • Follow the code examples provided in the next section

When implementing the code examples:

  • Do not copy the code block markers (```)
  • Maintain proper indentation and formatting
  • Follow the exact structure shown in examples

For a complete visual walkthrough of the installation process, check our YouTube tutorial

Add the following weapons configuration to ox_inventory\data\weapons.lua:

--VVSGUNS
['WEAPON_9MMARPRED'] = {
label = '9MM ARP RED VVS',
weight = 1,
durability = 0.1,
ammoname = 'ammo-9'
},
['WEAPON_9MMARPGREEN'] = {
label = '9MM ARP GREEN VVS',
weight = 1,
durability = 0.1,
ammoname = 'ammo-9'
},
['WEAPON_9MMARPBLUE'] = {
label = '9MM ARP BLUE VVS',
weight = 1,
durability = 0.1,
ammoname = 'ammo-9'
},
-- Add the remaining weapon entries from your package here.
  • When copying code, do not include the ``` marks; they are for demonstration purposes only.
  • Ensure that the script is correctly initiated.
  • Follow all steps carefully to ensure proper functionality.