ox_inventory
Images:
Go to
dynyx_prison\images
and copy all the imagesLocate the
ox_inventory\web\images
folderAnd paste all the images in there
Items:
Copy the following code
Go to the bottom of
ox_inventory\data\items.lua
Paste all the items before the last
}
["prison_tray"] = {
label = "Food Tray",
weight = 500,
close = true,
stack = false,
description = "A metal tray holding your daily prison meal. Not exactly five-star dining.",
server = {
export = 'dynyx_prison.holdtray'
}
},
['makeshift_explosive'] = {
label = 'Makeshift Explosive',
weight = 500,
stack = true,
close = true,
description = 'Can be used to blast through weak walls or doors.',
},
['bribe_package'] = {
label = 'Bribe Package',
weight = 200,
stack = true,
close = true,
description = 'Useful for bribing guardsβ¦ if theyβre corrupt enough.',
},
['prison_keycard'] = {
label = 'Prison Keycard',
weight = 100,
stack = true,
close = true,
description = 'A keycard with limited access privileges.',
},
['scrap_metal'] = {
label = 'Scrap Metal',
weight = 300,
stack = true,
close = true,
description = 'Jagged scrap metal, could be used for crafting or weapons.',
},
['circuit_board'] = {
label = 'Circuit Board',
weight = 200,
stack = true,
close = true,
description = 'Broken but salvageable electronics.',
},
['cleaning_chemicals'] = {
label = 'Cleaning Chemicals',
weight = 400,
stack = true,
close = true,
description = 'Industrial-strength chemicals. Use wisely.',
},
['shank_piece'] = {
label = 'Shank Piece',
weight = 150,
stack = true,
close = true,
description = 'A sharpened fragment, perfect for building a shank.',
},
['rag'] = {
label = 'Rag',
weight = 100,
stack = true,
close = true,
description = 'Dirty cloth. Could be used in crafting or disguise.',
},
['soap_bar'] = {
label = 'Soap Bar',
weight = 100,
stack = true,
close = true,
description = 'Basic soap. Clean up or slip someone up.',
},
['prison_note'] = {
label = 'Prison Note',
weight = 50,
stack = true,
close = true,
description = 'A suspicious note passed between inmates.',
},
Last updated