Items

Here are all the items you need to add to your server.

Item images are located in the ui/build/items folder.

ox_inventory/data/weapons.lua
['WEAPON_DIGISCANNER'] = {
	label = 'Digiscanner',
	weight = 1000,
	durability = 0.0,
},
['WEAPON_CROWBAR'] = {
	label = 'Crowbar',
	weight = 2500,
	durability = 0.1,
},
ox_inventory/data/items.lua
--- # start 0r-illegalpack
-- # Market Items
['lockpick'] = { label = 'Lockpick', weight = 0.0, stack = true, },
['powdered_milk'] = { label = 'Powdered Milk', weight = 0.1, stack = true, },
['money_sheet'] = { label = 'Money Sheet', weight = 0.1, stack = true, },
['anchor'] = { label = 'Anchor', weight = 0.1, stack = true, },
['plant_spray'] = { label = 'Plant Spray', weight = 0.0, stack = true, },
['ammonia'] = { label = 'Ammonia', weight = 0.1, stack = true, },
['sacid'] = { label = 'sacid', weight = 0.1, stack = true, },
['atm_hack_device'] = { label = 'Atm Hack Device', weight = 0.1, stack = true, },
['blank_card'] = { label = 'Blank Card', weight = 0.1, stack = true, },
['moonshine_pack'] = { label = 'Moonshine Pack', weight = 0.1, stack = true, },
-- # jobs/bag_snatch
['stolen_bag'] = { label = 'Stolen Bag', weight = 1.0, stack = true, },
['scrapmetal'] = { label = 'Scrap Metal', weight = 0.1, stack = true, },
['plastic'] = { label = 'Plastic', weight = 0.1, stack = true, },
['glass'] = { label = 'Glass', weight = 0.1, stack = true, },
['copperwire'] = { label = 'Copperwire', weight = 0.1, stack = true, },

['bandage'] = { label = 'Bandage', weight = 0.1, stack = true, },
['painkiller'] = { label = 'Painkiller', weight = 0.1, stack = true, },
['medkit'] = { label = 'Medkit', weight = 0.1, stack = true, },
['adrenaline'] = { label = 'Copperwire', weight = 0.1, stack = true, },
-- # jobs/cocaine_job
['unpacked_coke'] = { label = 'Unpacked Code', weight = 1.0, stack = true, },
['cutted_coke'] = { label = 'Cutted Coke', weight = 1.0, stack = true, },
['packed_coke'] = { label = 'Packed Coke', weight = 1.0, stack = true, },
-- # jobs/counterfeit_money
['uncutted_money'] = { label = 'Uncutted Money', weight = 0.1, stack = true, },
['cutted_money'] = { label = 'Cutted Money', weight = 0.1, stack = true, },
-- # jobs/fraud
['fake_credit_card'] = { label = 'Credit Card', weight = 0.0, stack = true, },
-- # jobs/meth_job
['cooked_meth'] = { label = 'Cooked Meth', weight = 0.0, stack = true, },
['breaked_meth'] = { label = 'Breaked Meth', weight = 0.0, stack = true, },
['packed_meth'] = { label = 'Packed Meth', weight = 0.0, stack = true, },
-- # jobs/moonshine
['moonshine_still'] = { label = 'Moonshine Still', weight = 1.0, stack = true, },
['old_corn'] = { label = 'Old Corn', weight = 0.1, stack = true, },
['old_fruit'] = { label = 'Old Fruit', weight = 0.1, stack = true, },
['tap_water'] = { label = 'Tap Water', weight = 0.1, stack = true, },
['moonshine'] = { label = 'Moonshine', weight = 0.1, stack = true, },
['crushed_ingredients'] = { label = 'Crushed Ingredients', weight = 0.1, stack = true, },
['blended_ingredients'] = { label = 'BlendedIngredients', weight = 0.1, stack = true, },
-- # jobs/weed
['unpacked_weed'] = { label = 'Unpacked Weed', weight = 0.1, stack = true, },
['packed_weed'] = { label = 'Packed Weed', weight = 1.0, stack = true, },
['rolled_weed'] = { label = 'Rolled Weed', weight = 0.1, stack = true, },
-- # Illegal tablet
['illegal_tablet'] = { label = 'Illegal Tablet', weight = 1.0, stack = false, },
--- # end 0r-illegalpack

Last updated