Items - OX
Add these into your items list e.g. ox_inventory/data/items.lua
-- Grave Robbing
['bodybag'] = { label = 'Body Bag', weight = 2000, stack = false, close = false, client = { image = 'bodybag.png' }, description = 'Empty bag ready for the deceased' },
['diamond'] = { label = 'Diamond', weight = 200, stack = false, close = false, client = { image = 'diamond.png' }, description = 'A flawless diamond!' },
['emerald'] = { label = 'Emerald', weight = 200, stack = false, close = false, client = { image = 'emerald.png' }, description = 'A flawless diamond!' },
['filled_bodybag'] = { label = 'Filled Body Bag', weight = 20000, stack = true, close = false, client = { image = 'bodybag_filled.png' }, description = 'A cadaver acquired via body-snatching' },
['shovel'] = { label = 'Shovel', weight = 5000, stack = false, close = false, client = { image = 'shovel.png' }, description = 'A groundbreaking invention' },
['skull'] = { label = 'Skull', weight = 1000, stack = true, close = false, client = { image = 'skull.png' }, description = 'Try not to lose your head... oh' },
['treasuremap'] = { label = 'Treasure Map', weight = 200, stack = false, close = false, client = { image = 'treasuremap.png' }, description = 'Perhaps I can find someone to decipher this' },
-- Misc.
['diamond_ring'] = { label = 'Diamond Ring', weight = 100, stack = false, close = true, client = { image = 'diamond_ring.png' }, description = 'A diamond ring seems like the jackpot to me!' },
['goldbar'] = { label = 'Gold Bar', weight = 3000, stack = false, close = true, client = { image = 'goldbar.png' }, description = 'Looks pretty expensive to me' },
['goldchain'] = { label = 'Golden Chain', weight = 700, stack = false, close = true, client = { image = 'goldchain.png' }, description = 'A golden chain seems like the jackpot to me!' },
['plastic'] = { label = 'Plastic', weight = 200, stack = false, close = false, client = { image = 'plastic.png' }, description = 'RECYCLE! - Greta Thunberg 2019' },
['rolex'] = { label = 'Golden Watch', weight = 500, stack = false, close = true, client = { image = 'rolex.png' }, description = 'A golden watch seems like the jackpot to me!' },
['tenkgoldchain'] = { label = '10k Gold Chain', weight = 1000, stack = false, close = true, client = { image = '10kgoldchain.png' }, description = '10 carat golden chain' },
['whiskey'] = { label = 'Whiskey', weight = 1000, stack = true, close = true, client = { image = 'whiskey.png' }, description = 'For all the thirsty out there' },
Last updated