Browse docs
Inventory Items
Use these configurations to prepare your inventory for the Sky Ambulance Job script.
Preview images for every item are included in sky_ambulancejob/config/inventory — use them so the items match the UI.
['gauze'] = {
label = 'Gauze',
weight = 50,
stack = true,
close = true,
description = 'Used for dressing wounds'
},
['blood_infusion'] = {
label = 'Blood Infusion',
weight = 500,
stack = true,
close = true,
description = 'Infusion for restoring blood'
},
['crutch'] = {
label = 'Crutch',
weight = 2000,
stack = false,
close = true,
description = 'Crutch for assistance while walking'
},
['wheelchair'] = {
label = 'Wheelchair',
weight = 15000,
stack = false,
close = true,
description = 'Wheelchair'
},
['glucose'] = {
label = 'Glucose',
weight = 300,
stack = true,
close = true,
description = 'Glucose for quick energy recovery'
},
['rescue_backpack'] = {
label = 'Rescue Backpack',
weight = 8000,
stack = false,
close = true,
description = 'Medical backpack for emergency aid'
},
['saline_infusion'] = {
label = 'Saline Infusion',
weight = 500,
stack = true,
close = true,
description = 'Saline solution for stabilization'
},
['quickclot'] = {
label = 'QuickClot',
weight = 100,
stack = true,
close = true,
description = 'Stops severe bleeding'
},
['tourniquet'] = {
label = 'Tourniquet',
weight = 150,
stack = true,
close = true,
description = 'Stops bleeding fast but for a limited time'
},
['ibuprofen'] = {
label = 'Ibuprofen',
weight = 50,
stack = true,
close = true,
description = 'Painkiller and anti-inflammatory'
},
['oxycodon'] = {
label = 'Oxycodone',
weight = 50,
stack = true,
close = true,
description = 'Strong painkiller (opioid)'
},
['morphine'] = {
label = 'Morphine',
weight = 50,
stack = true,
close = true,
description = 'Powerful pain-relief medication'
},
['bp_medication'] = {
label = 'Blood Pressure Medication',
weight = 50,
stack = true,
close = true,
description = 'Medication to lower high blood pressure'
},
['gauze'] = {
['name'] = 'gauze',
['label'] = 'Gauze',
['weight'] = 50,
['type'] = 'item',
['image'] = 'gauze.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Used for dressing wounds'
},
['blood_infusion'] = {
['name'] = 'blood_infusion',
['label'] = 'Blood Infusion',
['weight'] = 500,
['type'] = 'item',
['image'] = 'blood_infusion.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Infusion for restoring blood'
},
['crutch'] = {
['name'] = 'crutch',
['label'] = 'Crutch',
['weight'] = 2000,
['type'] = 'item',
['image'] = 'crutch.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Crutch for assistance while walking'
},
['wheelchair'] = {
['name'] = 'wheelchair',
['label'] = 'Wheelchair',
['weight'] = 15000,
['type'] = 'item',
['image'] = 'wheelchair.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Wheelchair'
},
['glucose'] = {
['name'] = 'glucose',
['label'] = 'Glucose',
['weight'] = 300,
['type'] = 'item',
['image'] = 'glucose.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Glucose for quick energy recovery'
},
['rescue_backpack'] = {
['name'] = 'rescue_backpack',
['label'] = 'Rescue Backpack',
['weight'] = 8000,
['type'] = 'item',
['image'] = 'rescue_backpack.png',
['unique'] = true,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Medical backpack for emergency aid'
},
['saline_infusion'] = {
['name'] = 'saline_infusion',
['label'] = 'Saline Infusion',
['weight'] = 500,
['type'] = 'item',
['image'] = 'saline_infusion.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Saline solution for stabilization'
},
['quickclot'] = {
['name'] = 'quickclot',
['label'] = 'QuickClot',
['weight'] = 100,
['type'] = 'item',
['image'] = 'quickclot.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Stops severe bleeding'
},
['tourniquet'] = {
['name'] = 'tourniquet',
['label'] = 'Tourniquet',
['weight'] = 150,
['type'] = 'item',
['image'] = 'tourniquet.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Stops bleeding fast but for a limited time'
},
['ibuprofen'] = {
['name'] = 'ibuprofen',
['label'] = 'Ibuprofen',
['weight'] = 50,
['type'] = 'item',
['image'] = 'ibuprofen.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Painkiller and anti-inflammatory'
},
['oxycodon'] = {
['name'] = 'oxycodon',
['label'] = 'Oxycodone',
['weight'] = 50,
['type'] = 'item',
['image'] = 'oxycodon.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Strong painkiller (opioid)'
},
['morphine'] = {
['name'] = 'morphine',
['label'] = 'Morphine',
['weight'] = 50,
['type'] = 'item',
['image'] = 'morphine.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Powerful pain-relief medication'
},
['bp_medication'] = {
['name'] = 'bp_medication',
['label'] = 'Blood Pressure Medication',
['weight'] = 50,
['type'] = 'item',
['image'] = 'bp_medication.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Medication to lower high blood pressure'
},
-- Add to qb-core/shared/items.lua inside QBShared.Items
gauze = {name = 'gauze', label = 'Gauze', weight = 50, shouldClose = true, description = 'Used for dressing wounds', unique = false, type = 'item', image = 'gauze.png', useable = false},
blood_infusion = {name = 'blood_infusion', label = 'Blood Infusion', weight = 500, shouldClose = true, description = 'Infusion for restoring blood', unique = false, type = 'item', image = 'blood_infusion.png', useable = false},
crutch = {name = 'crutch', label = 'Crutch', weight = 2000, shouldClose = true, description = 'Crutch for assistance while walking', unique = true, type = 'item', image = 'crutch.png', useable = true},
wheelchair = {name = 'wheelchair', label = 'Wheelchair', weight = 15000, shouldClose = true, description = 'Wheelchair', unique = true, type = 'item', image = 'wheelchair.png', useable = true},
glucose = {name = 'glucose', label = 'Glucose', weight = 300, shouldClose = true, description = 'Glucose for quick energy recovery', unique = false, type = 'item', image = 'glucose.png', useable = false},
rescue_backpack = {name = 'rescue_backpack', label = 'Rescue Backpack', weight = 8000, shouldClose = true, description = 'Medical backpack for emergency aid', unique = true, type = 'item', image = 'rescue_backpack.png', useable = true},
saline_infusion = {name = 'saline_infusion', label = 'Saline Infusion', weight = 500, shouldClose = true, description = 'Saline solution for stabilization', unique = false, type = 'item', image = 'saline_infusion.png', useable = false},
quickclot = {name = 'quickclot', label = 'QuickClot', weight = 100, shouldClose = true, description = 'Stops severe bleeding', unique = false, type = 'item', image = 'quickclot.png', useable = false},
tourniquet = {name = 'tourniquet', label = 'Tourniquet', weight = 150, shouldClose = true, description = 'Stops bleeding fast but for a limited time', unique = false, type = 'item', image = 'tourniquet.png', useable = false},
ibuprofen = {name = 'ibuprofen', label = 'Ibuprofen', weight = 50, shouldClose = true, description = 'Painkiller and anti-inflammatory', unique = false, type = 'item', image = 'ibuprofen.png', useable = true},
oxycodon = {name = 'oxycodon', label = 'Oxycodone', weight = 50, shouldClose = true, description = 'Strong painkiller (opioid)', unique = false, type = 'item', image = 'oxycodon.png', useable = false},
morphine = {name = 'morphine', label = 'Morphine', weight = 50, shouldClose = true, description = 'Powerful pain-relief medication', unique = false, type = 'item', image = 'morphine.png', useable = false},
bp_medication = {name = 'bp_medication', label = 'Blood Pressure Medication', weight = 50, shouldClose = true, description = 'Medication to lower high blood pressure', unique = false, type = 'item', image = 'bp_medication.png', useable = true},
gauze = {
label = 'Gauze',
weight = 50,
type = 'item',
image = 'gauze.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Used for dressing wounds'
},
blood_infusion = {
label = 'Blood Infusion',
weight = 500,
type = 'item',
image = 'blood_infusion.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Infusion for restoring blood'
},
crutch = {
label = 'Crutch',
weight = 2000,
type = 'item',
image = 'crutch.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Crutch for assistance while walking'
},
wheelchair = {
label = 'Wheelchair',
weight = 15000,
type = 'item',
image = 'wheelchair.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Wheelchair'
},
glucose = {
label = 'Glucose',
weight = 300,
type = 'item',
image = 'glucose.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Glucose for quick energy recovery'
},
rescue_backpack = {
label = 'Rescue Backpack',
weight = 8000,
type = 'item',
image = 'rescue_backpack.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Medical backpack for emergency aid'
},
saline_infusion = {
label = 'Saline Infusion',
weight = 500,
type = 'item',
image = 'saline_infusion.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Saline solution for stabilization'
},
quickclot = {
label = 'QuickClot',
weight = 100,
type = 'item',
image = 'quickclot.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Stops severe bleeding'
},
tourniquet = {
label = 'Tourniquet',
weight = 150,
type = 'item',
image = 'tourniquet.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Stops bleeding fast but for a limited time'
},
ibuprofen = {
label = 'Ibuprofen',
weight = 50,
type = 'item',
image = 'ibuprofen.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Painkiller and anti-inflammatory'
},
oxycodon = {
label = 'Oxycodone',
weight = 50,
type = 'item',
image = 'oxycodon.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Strong painkiller (opioid)'
},
morphine = {
label = 'Morphine',
weight = 50,
type = 'item',
image = 'morphine.png',
hasMetadata = false,
useable = false,
shouldClose = true,
description = 'Powerful pain-relief medication'
},
bp_medication = {
label = 'Blood Pressure Medication',
weight = 50,
type = 'item',
image = 'bp_medication.png',
hasMetadata = false,
useable = true,
shouldClose = true,
description = 'Medication to lower high blood pressure'
},
['gauze'] = {
label = 'Gauze',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'gauze.png',
description = 'Used for dressing wounds'
},
['blood_infusion'] = {
label = 'Blood Infusion',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'blood_infusion.png',
description = 'Infusion for restoring blood'
},
['crutch'] = {
label = 'Crutch',
weight = 2,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'crutch.png',
description = 'Crutch for assistance while walking'
},
['wheelchair'] = {
label = 'Wheelchair',
weight = 15,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'wheelchair.png',
description = 'Wheelchair'
},
['glucose'] = {
label = 'Glucose',
weight = 0.3,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'glucose.png',
description = 'Glucose for quick energy recovery'
},
['rescue_backpack'] = {
label = 'Rescue Backpack',
weight = 8,
stackable = false,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'rescue_backpack.png',
description = 'Medical backpack for emergency aid'
},
['saline_infusion'] = {
label = 'Saline Infusion',
weight = 0.5,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'saline_infusion.png',
description = 'Saline solution for stabilization'
},
['quickclot'] = {
label = 'QuickClot',
weight = 0.1,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'quickclot.png',
description = 'Stops severe bleeding'
},
['tourniquet'] = {
label = 'Tourniquet',
weight = 0.15,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'tourniquet.png',
description = 'Stops bleeding fast but for a limited time'
},
['ibuprofen'] = {
label = 'Ibuprofen',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'ibuprofen.png',
description = 'Painkiller and anti-inflammatory'
},
['oxycodon'] = {
label = 'Oxycodone',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'oxycodon.png',
description = 'Strong painkiller (opioid)'
},
['morphine'] = {
label = 'Morphine',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'morphine.png',
description = 'Powerful pain-relief medication'
},
['bp_medication'] = {
label = 'Blood Pressure Medication',
weight = 0.05,
stackable = true,
close = true,
maxStack = 100,
type = 'item',
rarity = 'common',
image = 'bp_medication.png',
description = 'Medication to lower high blood pressure'
},
-- Add to codem-inventory/config/itemlist.lua
["gauze"] = {
["name"] = "gauze",
["label"] = "Gauze",
["weight"] = 50,
["type"] = "item",
["image"] = "gauze.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Used for dressing wounds"
},
["blood_infusion"] = {
["name"] = "blood_infusion",
["label"] = "Blood Infusion",
["weight"] = 500,
["type"] = "item",
["image"] = "blood_infusion.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Infusion for restoring blood"
},
["crutch"] = {
["name"] = "crutch",
["label"] = "Crutch",
["weight"] = 2000,
["type"] = "item",
["image"] = "crutch.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Crutch for assistance while walking"
},
["wheelchair"] = {
["name"] = "wheelchair",
["label"] = "Wheelchair",
["weight"] = 15000,
["type"] = "item",
["image"] = "wheelchair.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Wheelchair"
},
["glucose"] = {
["name"] = "glucose",
["label"] = "Glucose",
["weight"] = 300,
["type"] = "item",
["image"] = "glucose.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Glucose for quick energy recovery"
},
["rescue_backpack"] = {
["name"] = "rescue_backpack",
["label"] = "Rescue Backpack",
["weight"] = 8000,
["type"] = "item",
["image"] = "rescue_backpack.png",
["unique"] = true,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Medical backpack for emergency aid"
},
["saline_infusion"] = {
["name"] = "saline_infusion",
["label"] = "Saline Infusion",
["weight"] = 500,
["type"] = "item",
["image"] = "saline_infusion.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Saline solution for stabilization"
},
["quickclot"] = {
["name"] = "quickclot",
["label"] = "QuickClot",
["weight"] = 100,
["type"] = "item",
["image"] = "quickclot.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Stops severe bleeding"
},
["tourniquet"] = {
["name"] = "tourniquet",
["label"] = "Tourniquet",
["weight"] = 150,
["type"] = "item",
["image"] = "tourniquet.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Stops bleeding fast but for a limited time"
},
["ibuprofen"] = {
["name"] = "ibuprofen",
["label"] = "Ibuprofen",
["weight"] = 50,
["type"] = "item",
["image"] = "ibuprofen.png",
["unique"] = false,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Painkiller and anti-inflammatory"
},
["oxycodon"] = {
["name"] = "oxycodon",
["label"] = "Oxycodone",
["weight"] = 50,
["type"] = "item",
["image"] = "oxycodon.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Strong painkiller (opioid)"
},
["morphine"] = {
["name"] = "morphine",
["label"] = "Morphine",
["weight"] = 50,
["type"] = "item",
["image"] = "morphine.png",
["unique"] = false,
["usable"] = false,
["shouldClose"] = true,
["description"] = "Powerful pain-relief medication"
},
["bp_medication"] = {
["name"] = "bp_medication",
["label"] = "Blood Pressure Medication",
["weight"] = 50,
["type"] = "item",
["image"] = "bp_medication.png",
["unique"] = false,
["usable"] = true,
["shouldClose"] = true,
["description"] = "Medication to lower high blood pressure"
},
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('gauze', 'Gauze', 1, 0, 1),
('blood_infusion', 'Blood Infusion', 1, 0, 1),
('crutch', 'Crutch', 1, 0, 1),
('wheelchair', 'Wheelchair', 1, 0, 1),
('glucose', 'Glucose', 1, 0, 1),
('rescue_backpack', 'Rescue Backpack', 1, 0, 1),
('saline_infusion', 'Saline Infusion', 1, 0, 1),
('quickclot', 'QuickClot', 1, 0, 1),
('tourniquet', 'Tourniquet', 1, 0, 1),
('ibuprofen', 'Ibuprofen', 1, 0, 1),
('oxycodon', 'Oxycodone', 1, 0, 1),
('morphine', 'Morphine', 1, 0, 1),
('bp_medication', 'Blood Pressure Medication', 1, 0, 1);
The
qb-core shared items also cover qb-inventory, ps-inventory, and jpr-inventory — they all read QBShared.Items. For inventories not listed here (core_inventory, origen_inventory, ak47_inventory, one_inventory), transfer the same name, label, weight, and image values into that inventory's item format.Support
Need help? Our support team is always ready to assist
Join Discord