ox_inventory
Images:
Go to
dynyx_crafting\images
and copy all the imagesLocate the
ox_inventory\web\images
folderAnd paste all the images in there
Items:
Copy the following code
Go to the bottom of
ox_inventory\data\items.lua
Paste all the items before the last
}
["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_apppistol"] = {
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.",
},
Last updated