OLD QB/PS-Inventory Support

This Is OLD QB/PS-Inventory Support Docs Please Follow The Step

INSTALL:

Add the item images to your inventory script

[qb] > qb-inventory > html > images


Add This In Your qb-inventory if you use old qb-inventory(1.1.0) or ps-inventory(1.0.6)

[qb] > qb-inventory > html > js > app.js

    } else if (itemData.name == "organbox") {
                $(".item-info-title").html("<p>" + itemData.info.name + "</p>");
                $(".item-info-description").html(
                    "<p><strong>BloodType: </strong><span>" +
                    itemData.info.bloodtype +
                    "</span></p>" +
                    "<p><strong>Status: </strong><span>" +
                    itemData.info.status +
                    "</span></p>"
                );

QBShared Items

[qb] > qb-core > shared > items.lua

-- Kael Organs
	['organcooler'] 				 = {['name'] = 'organcooler', 			  	  	['label'] = 'Cooler Box', 			['weight'] = 1000, 		['type'] = 'item', 		['image'] = 'coolerbox.png', 			['unique'] = false, 		['useable'] = false, 	['shouldClose'] = true,	   ['combinable'] = nil,   ['description'] = 'A Cooler Box For Trasfering Organs'},
	['organbox'] 				 = {['name'] = 'organbox', 			  	  	['label'] = 'Organ Cooler Box', 			['weight'] = 1000, 		['type'] = 'item', 		['image'] = 'organbox.png', 			['unique'] = true, 		['useable'] = false, 	['shouldClose'] = true,	   ['combinable'] = nil,   ['description'] = 'A Cooler Box With Organ'},
	['trojan_usb'] 				 	 = {['name'] = 'trojan_usb', 			  	  	['label'] = 'Trojan USB', 				['weight'] = 0, 		['type'] = 'item', 		['image'] = 'usb_device.png', 			['unique'] = false, 	['useable'] = false, 	['shouldClose'] = true,	   ['combinable'] = nil,   ['description'] = 'Handy software to shut down some systems'},
	['chloroform']                  = {['name'] = 'chloroform',                         ['label'] = 'Chloroform Bottle',             ['weight'] = 1000,         ['type'] = 'item',         ['image'] = 'chloroform.png',             ['unique'] = true,         ['useable'] = false,     ['shouldClose'] = true,       ['combinable'] = nil,   ['description'] = 'A Bottle Of Chloroform'},

Last updated