# ox\_inventory

## Images:

1. Go to `dynyx_crafting\images` and copy all the images
2. Locate the `ox_inventory\web\images` folder
3. And paste all the images in there

## Items:

1. Copy the following code
2. Go to the bottom of `ox_inventory\data\items.lua`
3. Paste all the items before the last  `}`

```lua
       ["table_weapon"] = {
 		label = "Weapon Bench",
 		weight = 500,
 		close = true,
 		stack = false,
 		description = "A sturdy table designed for crafting various firearms and weapon components.",
 		server = {
 			export = 'dynyx_crafting.usetable',
 		}
 	},
 	
 	["table_tools"] = {
 		label = "Tools Bench",
 		weight = 500,
 		close = true,
 		stack = false,
 		description = "A workstation equipped for crafting essential tools and repair kits.",
 		server = {
 			export = 'dynyx_crafting.usetable',
 			image = "table_weapon.png",
 		},
 	},
 	
 	["table_ammo"] = {
 		label = "Ammo Bench",
 		weight = 500,
 		close = true,
 		stack = false,
 		description = "A specialized bench for manufacturing ammunition and reloading spent cartridges.",
 		server = {
 			export = 'dynyx_crafting.usetable',
 		},
 	},
 
 ---- BLUEPRINTS

	["blueprint_pistol"] = {
		label = "Pistol Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting a standard pistol.",
	},
	["blueprint_combatpistol"] = {
		label = "Combat Pistol Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting a combat pistol.",
	},
	["blueprint_heavypistol"] = {
		label = "Heavy Pistol Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting a heavy pistol.",
	},
	["blueprint_appistol"] = {
		label = "AP Pistol Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting a AP pistol.",
	},
	["blueprint_smg"] = {
		label = "SMG Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting an SMG.",
	},
	["blueprint_carbinerifle"] = {
		label = "Carbine Rifle Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting a carbine rifle.",
	},
	["blueprint_assaultrifle"] = {
		label = "Assault Rifle Blueprint",
		weight = 500,
		close = true,
		stack = false,
		description = "Blueprint for crafting an assault rifle.",
	},	
```
