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/items.lua
--- # start 0r-craft-v2 items
['scrapmetal'] = { label = 'Scrap Metal', weight = 0.2, stack = true },
['iron'] = { label = 'Iron', weight = 0.3, stack = true },
['screwdriver'] = { label = 'Screwdriver', weight = 0.2, stack = true },
['carbonfiber'] = { label = 'Carbon Fiber', weight = 0.1, stack = true },
['scope_lens'] = { label = 'Scope Lens', weight = 0.1, stack = true },
['steel'] = { label = 'Steel', weight = 0.3, stack = true },
['screws'] = { label = 'Screws', weight = 0.1, stack = true },
['plastic'] = { label = 'Plastic', weight = 0.2, stack = true },
['triggerkit'] = { label = 'Trigger Kit', weight = 0.1, stack = true },
['ducttape'] = { label = 'Duct Tape', weight = 0.1, stack = true },
['wood'] = { label = 'Wood', weight = 0.3, stack = true },
['emptybottle'] = { label = 'Empty Bottle', weight = 0.1, stack = true },
['alcohol'] = { label = 'Alcohol', weight = 0.2, stack = true },
['cloth'] = { label = 'Cloth', weight = 0.1, stack = true },
['gunoil'] = { label = 'Gun Oil', weight = 0.1, stack = true },
['wrench'] = { label = 'Wrench', weight = 0.2, stack = true },
['raw_meat'] = { label = 'Raw Meat', weight = 0.4, stack = true },
['salt'] = { label = 'Salt', weight = 0.05, stack = true },
['spices'] = { label = 'Spices', weight = 0.05, stack = true },
['lettuce'] = { label = 'Lettuce', weight = 0.1, stack = true },
['tomato'] = { label = 'Tomato', weight = 0.1, stack = true },
['wrapbread'] = { label = 'Wrap', weight = 0.1, stack = true },
['bun'] = { label = 'Bun', weight = 0.1, stack = true },
['cheese'] = { label = 'Cheese', weight = 0.1, stack = true },
['beef_patty'] = { label = 'Patty', weight = 0.3, stack = true },
['coffee_beans'] = { label = 'Coffee Beans', weight = 0.1, stack = true },
['water'] = { label = 'Water Bottle', weight = 0.2, stack = true },
['sugar'] = { label = 'Sugar', weight = 0.05, stack = true }
['grilled_steak'] = { label = 'Grilled Steak', weight = 0.3, stack = true },
['veggie_wrap'] = { label = 'Veggie Wrap', weight = 0.25, stack = true },
['cheeseburger'] = { label = 'Cheeseburger', weight = 0.35, stack = true },
['coffee'] = { label = 'Hot Coffee', weight = 0.2, stack = true }
--- # end 0r-craft-v2 items

Last updated