Inventory Setup

Add to items.lua

['bottle_cap'] = {
    label = 'Bottle Cap',
    weight = 0,
    stack = true,
    close = true,
},
['cardboard_bed'] = {
    label = 'Cardboard Bed',
    weight = 1,
    stack = false,
    close = true,
},
['hobo_gloves'] = {
    label = 'Hobo Gloves',
    weight = 1,
    stack = false,
    close = true,
},
['hobo_tent'] = {
    label = 'Hobo Tent',
    weight = 10000,
    stack = false,
    close = true,
},
['begging_sign'] = {
    label = 'Begging Sign',
    weight = 1,
    stack = true,
    close = true,
},
['medical_care_package'] = {
    label = 'Medical Care Package',
    weight = 10000,
    stack = false,
    close = true,
},
['rat_treats'] = {
    label = 'Rat Treats',
    weight = 1,
    stack = true,
    close = true,
},
['racoon_treats'] = {
    label = 'Racoon Treats',
    weight = 1,
    stack = true,
    close = true,
},
['rat_bait'] = {
    label = 'Rat Bait',
    weight = 1,
    stack = true,
    close = true,
},
['hobo_crown'] = {
    label = 'Hobo Crown',
    weight = 500,
    stack = false,
    close = true,
},
['sleeping_bag'] = {
    label = 'Sleeping Bag',
    weight = 2000,
    stack = false,
    close = true,
},
['hobo_bottle'] = {
    label = 'Dirty Water',
    weight = 500,
    stack = false,
    close = true,
    description = 'A bottle of dirty water, it smells bad..',
},
['ration_pack'] = {
    label = 'Ration Pack',
    weight = 1500,
    stack = false,
    close = true,
},
['wooden_junk'] = {
    label = 'Wooden Junk',
    weight = 100,
    stack = true,
    close = true,
},
['copper_junk'] = {
    label = 'Copper Junk',
    weight = 100,
    stack = true,
    close = true,
},
['scrap_junk'] = {
    label = 'Scrap Junk',
    weight = 100,
    stack = true,
    close = true,
},
['cloth_junk'] = {
    label = 'Cloth Junk',
    weight = 100,
    stack = true,
    close = true,
},
['plastic_junk'] = {
    label = 'Plastic Junk',
    weight = 100,
    stack = true,
    close = true,
},
['electronic_junk'] = {
    label = 'Electronic Junk',
    weight = 100,
    stack = true,
    close = true,
},
['broken_phone'] = {
    label = 'Broken Phone',
    weight = 300,
    stack = true,
    close = true,
},
['food_waste'] = {
    label = 'Food Waste',
    weight = 100,
    stack = true,
    close = true,
},
['medical_waste'] = {
    label = 'Medical Waste',
    weight = 100,
    stack = true,
    close = true,
},
['paper_junk'] = {
    label = 'Paper Junk',
    weight = 100,
    stack = true,
    close = true,
},
['glass_junk'] = {
    label = 'Glass Junk',
    weight = 100,
    stack = true,
    close = true,
},
['rabies_shot'] = {
    label = 'Rabies Shot',
    weight = 100,
    stack = true,
    close = true,
},
['tetanus_shot'] = {
    label = 'Tetanus Shot',
    weight = 100,
    stack = true,
    close = true,
},

Add to weapons.lua

['WEAPON_HOBO_TOILET'] = {
	label = 'Toilet Seat',
	weight = 1000,
	durability = 0.1,
},

['WEAPON_HOBO_STICK'] = {
	label = 'Hobo Stick',
	weight = 800,
	durability = 0.1,
},

['WEAPON_HOBO_MOP'] = {
	label = 'Mop',
	weight = 900,
	durability = 0.1,
},

['WEAPON_HOBO_SHARD'] = {
	label = 'Broken Glass',
	weight = 400,
	durability = 0.1,
},

['WEAPON_HOBO_REBAR'] = {
	label = 'Rebar',
	weight = 1200,
	durability = 0.1,
},

['WEAPON_HOBO_PLANK'] = {
	label = 'Wooden Plank',
	weight = 1000,
	durability = 0.1,
},

['WEAPON_HOBO_OLDMACHETE'] = {
	label = 'Old Machete',
	weight = 1100,
	durability = 0.1,
},

['WEAPON_HOBO_DUSTERS'] = {
	label = 'Bolt Knuckles',
	weight = 500,
	durability = 0.1,
},

['WEAPON_HOBO_RATSTICK'] = {
	label = 'Rat Stick',
	weight = 700,
	durability = 0.1,
},

['WEAPON_HOBO_PIPE'] = {
	label = 'Pipe',
	weight = 1100,
	durability = 0.1,
},

['WEAPON_HOBO_DIRTYNEEDLE'] = {
	label = 'Dirty Needle',
	weight = 200,
	durability = 0.1,
},

Last updated