Dynyx Scripts
  • Dynyx Scripts
  • 🚗Chop Shop
    • Introduction
    • Installation & Configuration
      • qb-inventory
      • ox_inventory
  • 🧰Crafting System
    • Introduction
    • Installation & Configuration
      • ox_inventory
      • qb-inventory / ps-inventory
      • qs-inventory
  • 🌱Weed Growing
    • Introduction
    • Installation & Configuration
      • ox_inventory
      • qb-inventory / ps-inventory
      • qs-inventory
  • 💳EBT Cards
    • Introduction
    • Installation & Configuration
      • ox_inventory
      • qb-inventory / ps-inventory
Powered by GitBook
On this page
  • Images:
  • Items:
  1. Crafting System
  2. Installation & Configuration

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 }

       ["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.",
	},	

PreviousInstallation & ConfigurationNextqb-inventory / ps-inventory

Last updated 1 month ago

🧰