ox_inventory

Images:

  1. Go to dynyx_rc\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 }


["drone"] = {
	label = "Dynyx Aero",
	weight = 500,
	close = true,
	stack = false,
	description = "",
	server = {
		export = 'dynyx_rc.register_drone'
	}
},
["police_drone"] = {
	label = "Dynyx PD-01",
	weight = 500,
	close = true,
	stack = false,
	description = "",
	server = {
		export = 'dynyx_rc.register_drone'
	}
},
["drone_mini"] = {
	label = "Dynyx V1-Lite",
	weight = 500,
	close = true,
	stack = false,
	description = "",
	server = {
		export = 'dynyx_rc.register_drone'
	}
},
["drone_controller"] = {
	label = "Drone Controller",
	weight = 500,
	close = true,
	stack = false,
	description = "",
},
["drone_battery"] = {
	label = "Drone Battery",
	weight = 500,
	close = true,
	stack = false,
	description = "",
},
["rc_car"] = {
	label = "RC Car",
	weight = 500,
	close = true,
	stack = false,
	description = "",
	server = {
		export = 'dynyx_rc.register_car'
	}
},
["rccar_controller"] = {
	label = "RC car Controller",
	weight = 500,
	close = true,
	stack = false,
	description = "",
},
["rccar_battery"] = {
	label = "RC Car Battery",
	weight = 500,
	close = true,
	stack = false,
	description = "",
},

Last updated