Page cover

πŸ’»Installation

Dependencies :

chevron-rightQBCorehashtag

You will need the latest version of qb-corearrow-up-right

  • Extract the contents of the archive to your resources folder.

  • Start the resource near the top of your resources in your server.cfg.

ITEMS

chevron-rightQB INVENTORYhashtag

Go to qb-core/shared/items.lua and add this :

    -- Pharmacy
    boltcutter          = { name = 'boltcutter', label = 'Bolt Cutter', weight = 7000, type = 'item', image = 'boltcutter.png', unique = false, useable = false, shouldClose = true, description = 'Bolt Cutter' },
    pharmacycard        = { name = 'pharmacycard', label = 'Pharmacy Card', weight = 7000, type = 'item', image = 'pharmacycard.png', unique = false, useable = false, shouldClose = true, description = 'Pharmacy Card' },
    pseudoephedrine     = { name = 'pseudoephedrine', label = 'Pseudoephedrine', weight = 7000, type = 'item', image = 'pseudoephedrine.png', unique = false, useable = false, shouldClose = true, description = 'Pseudoephedrine' },
    acetone             = { name = 'acetone', label = 'Acetone', weight = 7000, type = 'item', image = 'acetone.png', unique = false, useable = false, shouldClose = true, description = 'Acetone' },
    bicarbonatesodium   = { name = 'bicarbonatesodium', label = 'Bicarbonate Sodium', weight = 7000, type = 'item', image = 'bicarbonatesodium.png', unique = false, useable = false, shouldClose = true, description = 'Bicarbonate Sodium' },
    kitaminvials        = { name = 'kitaminvials', label = 'Kitamin Vials', weight = 7000, type = 'item', image = 'kitaminvials.png', unique = false, useable = false, shouldClose = true, description = 'Kitamin Vials' },
    alprazolampowder    = { name = 'alprazolampowder', label = 'Alprazolam powder', weight = 7000, type = 'item', image = 'alprazolampowder.png', unique = false, useable = false, shouldClose = true, description = 'Alprazolam powder' },
    salviatinctures     = { name = 'salviatinctures', label = 'Salvia tinctures', weight = 7000, type = 'item', image = 'salviatinctures.png', unique = false, useable = false, shouldClose = true, description = 'Salvia tinctures' },
    rollcash            = { name = 'rollcash', label = 'Rolled Cash', weight = 0, type = 'item', image = 'rollcash.png', unique = true, useable = true, shouldClose = true, description = 'Rolled Cash' },
chevron-rightOX INVENTORYhashtag

Go to ox_inventory/data/items.lua and add this :

	["acetone"] = {
		label = "Acetone",
		weight = 7000,
		stack = true,
		close = true,
		description = "Acetone",
		client = {
			image = "acetone.png",
		}
	},

	["bicarbonatesodium"] = {
		label = "Bicarbonate Sodium",
		weight = 7000,
		stack = true,
		close = true,
		description = "Bicarbonate Sodium",
		client = {
			image = "bicarbonatesodium.png",
		}
	},

	["kitaminvials"] = {
		label = "Kitamin Vials",
		weight = 7000,
		stack = true,
		close = true,
		description = "Kitamin Vials",
		client = {
			image = "kitaminvials.png",
		}
	},

	["alprazolampowder"] = {
		label = "Alprazolam powder",
		weight = 7000,
		stack = true,
		close = true,
		description = "Alprazolam powder",
		client = {
			image = "alprazolampowder.png",
		}
	},

	["pseudoephedrine"] = {
		label = "Pseudoephedrine",
		weight = 7000,
		stack = true,
		close = true,
		description = "Pseudoephedrine",
		client = {
			image = "pseudoephedrine.png",
		}
	},

	["salviatinctures"] = {
		label = "Salvia tinctures",
		weight = 7000,
		stack = true,
		close = true,
		description = "Salvia tinctures",
		client = {
			image = "salviatinctures.png",
		}
	},

	["pharmacycard"] = {
		label = "Pharmacy Card",
		weight = 7000,
		stack = true,
		close = true,
		description = "Pharmacy Card",
		client = {
			image = "pharmacycard.png",
		}
	},

	["boltcutter"] = {
		label = "Bolt Cutter",
		weight = 7000,
		stack = true,
		close = true,
		description = "Bolt Cutter",
		client = {
			image = "boltcutter.png",
		}
	},
	["rollcash"] = {
		label = "Cash Roll",
		weight = 100,
		stack = false,
		close = true,
		description = "",
		client = {
			image = "rollcash.png",
		}
	},
chevron-rightQS INVENTORYhashtag

Go to qs-inventory/shared/items.lua and add this :

['acetone'] = {
    name = 'acetone',
    label = 'Acetone',
    weight = 7000,
    type = 'item',
    image = 'acetone.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Acetone',
},

['bicarbonatesodium'] = {
    name = 'bicarbonatesodium',
    label = 'Bicarbonate Sodium',
    weight = 7000,
    type = 'item',
    image = 'bicarbonatesodium.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Bicarbonate Sodium',
},

['kitaminvials'] = {
    name = 'kitaminvials',
    label = 'Kitamin Vials',
    weight = 7000,
    type = 'item',
    image = 'kitaminvials.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Kitamin Vials',
},

['alprazolampowder'] = {
    name = 'alprazolampowder',
    label = 'Alprazolam powder',
    weight = 7000,
    type = 'item',
    image = 'alprazolampowder.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Alprazolam powder',
},

['pseudoephedrine'] = {
    name = 'pseudoephedrine',
    label = 'Pseudoephedrine',
    weight = 7000,
    type = 'item',
    image = 'pseudoephedrine.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Pseudoephedrine',
},

['salviatinctures'] = {
    name = 'salviatinctures',
    label = 'Salvia tinctures',
    weight = 7000,
    type = 'item',
    image = 'salviatinctures.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Salvia tinctures',
},

['pharmacycard'] = {
    name = 'pharmacycard',
    label = 'Pharmacy Card',
    weight = 7000,
    type = 'item',
    image = 'pharmacycard.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Pharmacy Card',
},

['boltcutter'] = {
    name = 'boltcutter',
    label = 'Bolt Cutter',
    weight = 7000,
    type = 'item',
    image = 'boltcutter.png',
    unique = false,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = 'Bolt Cutter',
},

['rollcash'] = {
    name = 'rollcash',
    label = 'Cash Roll',
    weight = 100,
    type = 'item',
    image = 'rollcash.png',
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = '',
},

DIALOG

chevron-rightZAT DIALOGhashtag

If you have zat-dialogarrow-up-right then add this to zat-dialog/shared/config.lua

ENSURE RESOURCES

Last updated