Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Diving
['binoculars'] = { label = 'Binoculars', weight = 600, stack = true, close = true, client = { image = 'binoculars.png' }, description = 'Grab a sneak peak!' },
['circularsaw'] = { label = 'Circular Saw', weight = 10000, stack = true, close = true, client = { image = 'circularsaw.png' }, description = 'You spin me right round...' },
['coralchisel'] = { label = 'Coral Chisel', weight = 2000, stack = true, close = true, client = { image = 'coralchisel.png' }, description = 'Illegal tool for coral fragging' },
['diving_gear'] = { label = 'Diving Gear', weight = 10000, stack = false, close = true, client = { image = 'diving_gear.png' }, description = 'Enabling deep ocean exploring since 1826' },
['exoticsalescard'] = { label = 'Exotic Sales Card', weight = 100, stack = true, close = true, client = { image = 'exoticsalescard.png' }, description = 'An exotic sales card!' },
['jerry_can'] = { label = 'Jerry Can', weight = 10000, stack = true, close = true, client = { image = 'jerry_can.png' }, description = 'A jerry can full of fuel' },
['security_card_05'] = { label = 'Humane Card B', weight = 100, stack = true, close = true, client = { image = 'security_card_05.png' }, description = 'Security card stolen from an underwater container' },
['acropora_coral'] = { label = 'Acropora', weight = 1000, stack = true, close = true, client = { image = 'acropora_coral.png' }, description = 'These are also known as table corals' },
['antipatharia_coral'] = { label = 'Antipatharia', weight = 1000, stack = true, close = true, client = { image = 'antipatharia_coral.png' }, description = 'These are also known as black corals or thorn corals' },
['dendrogyra_coral'] = { label = 'Dendrogyra', weight = 1000, stack = true, close = true, client = { image = 'dendrogyra_coral.png' }, description = 'These are also known as pillar corals' },
['bottle'] = { label = 'Glass Bottle', weight = 200, stack = true, close = true, client = { image = 'bottle.png' }, description = 'These are also known as pillar corals' },
['can'] = { label = 'Tin Can', weight = 200, stack = true, close = true, client = { image = 'can.png' }, description = 'These are also known as pillar corals' },
['copperwire'] = { label = 'Copper Wire', weight = 200, stack = true, close = true, client = { image = 'copperwire.png' }, description = 'These are also known as pillar corals' },
['cutlery'] = { label = 'Cutlery', weight = 200, stack = true, close = true, client = { image = 'cutlery.png' }, description = 'These are also known as pillar corals' },
['nails'] = { label = 'Metal Nails', weight = 200, stack = true, close = true, client = { image = 'nails.png' }, description = 'These are also known as pillar corals' },
['plasticbottle'] = { label = 'Plastic Bottle', weight = 200, stack = true, close = true, client = { image = 'plasticbottle.png' }, description = 'These are also known as pillar corals' },
['rubber'] = { label = 'Rubber', weight = 200, stack = true, close = true, client = { image = 'rubber.png' }, description = 'These are also known as pillar corals' },
-- Duplicates
['pistol_ammo'] = { label = 'Pistol Ammo', weight = 200, stack = true, close = true, client = { image = 'pistol_ammo.png' }, description = 'Ammunition for pistols' },
['rifle_ammo'] = { label = 'Rifle Ammo', weight = 1000, stack = true, close = true, client = { image = 'rifle_ammo.png' }, description = 'Ammunition for rifles' },
['shotgun_ammo'] = { label = 'Shotgun Ammo', weight = 500, stack = true, close = true, client = { image = 'shotgun_ammo.png' }, description = 'Ammunition for shotguns' },
['smg_ammo'] = { label = 'SMG Ammo', weight = 500, stack = true, close = true, client = { image = 'smg_ammo.png' }, description = 'Ammunition for submachine guns' },
Last updated