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 = true, client = { image = 'bodybag.png' }, description = 'Empty bag ready for the deceased' },
['filled_bodybag'] = { label = 'Filled Body Bag', weight = 20000, stack = true, close = true, client = { image = 'bodybag_filled.png' }, description = 'A cadaver acquired via body-snatching' },
['shovel'] = { label = 'Shovel', weight = 5000, stack = false, close = true, client = { image = 'shovel.png' }, description = 'A groundbreaking invention' },
['skull'] = { label = 'Skull', weight = 1000, stack = true, close = true, client = { image = 'skull.png' }, description = 'Try not to lose your head... oh' },
--['treasuremap'] = { label = 'Treasure Map', weight = 200, stack = false, close = true, client = { image = 'treasuremap.png' }, description = 'Perhaps I can find someone to decipher this' },
Last updated