ox_inventory

Images:

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

    ["prison_tablet"] = {
    	label = "Prison Tablet",
    	weight = 500,
    	close = true,
    	stack = false,
    	description = "A secured device used by prison staff to manage inmates and operations.",
    	client = {
        	export = 'dynyx_prison.OpenPrisonManageUI'
    	}
    },
    ["prison_doctablet"] = {
    	label = "DOC Tablet",
    	weight = 500,
    	close = true,
    	stack = false,
    	description = "DOC-issued tablet used to access prison systems and records",
    	client = {
        	export = 'dynyx_prison.OpenCorrectionsTabletUI'
    	}
    },
    ["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.',
    },

    ['prison_screwdriver'] = { -- This is mainly if you are using the prompt prison escape script.
        label = 'Screw Driver',
        weight = 100,
        stack = true,
        close = true,
        description = 'A worn screwdriver used to loosen bolts on prison toilets.',
    },

    ['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