Inventory Setup

Add to items.lua

["trap_phone"] = {
    label = 'Trap Phone',
    description = 'Trap-Line Bling...',
    weight = 100,
    stack = false,
    close = true,
},
["scales"] = {
    label = 'Scales',
    description = 'Great for weighing things',
    weight = 50,
    stack = false,
    close = true,
},
["batteries"] = {
    label = 'AAA Batteries',
    description = 'Extra long life',
    weight = 20,
    stack = true,
    close = true,
},
["baggies"] = {
    label = 'Baggies',
    description = 'Great for holding small things',
    weight = 20,
    stack = true,
    close = true,
},
["large_baggies"] = {
    label = 'Large Baggies',
    description = 'Great for holding bigger amounts of small things',
    weight = 20,
    stack = true,
    close = true,
},

Last updated