Inventory Setup
Add to items.lua
["basic_wingsuit"] = {
label = 'WingSuit',
description = 'For Advanced-Level Skydiving!',
weight = 10000,
stack = false,
close = true,
},
["advanced_wingsuit"] = {
label = 'Advanced WingSuit',
description = 'For The Ultimate Extreme Sports Hobbyist!',
weight = 10000,
stack = false,
close = true,
},
["flightsuit"] = {
label = 'FlightSuit',
description = 'Defy Gravity and Conquer The Skies!',
weight = 10000,
stack = false,
close = true,
},
["ultra_flightsuit"] = {
label = 'ULTRA FlightSuit',
description = 'Warning: This Suit is SERIOUSLY OVER-POWERED!',
weight = 10000,
stack = false,
close = true,
},
['basic_wingsuit'] = {
name = 'basic_wingsuit',
label = 'WingSuit',
weight = 10000,
type = 'item',
image = 'basic_wingsuit.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'For Advanced-Level Skydiving!',
},
['advanced_wingsuit'] = {
name = 'advanced_wingsuit',
label = 'Advanced WingSuit',
weight = 10000,
type = 'item',
image = 'advanced_wingsuit.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'For The Ultimate Extreme Sports Hobbyist!',
},
['flightsuit'] = {
name = 'flightsuit',
label = 'FlightSuit',
weight = 10000,
type = 'item',
image = 'flightsuit.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Defy Gravity and Conquer The Skies!',
},
['ultra_flightsuit'] = {
name = 'ultra_flightsuit',
label = 'ULTRA FlightSuit',
weight = 10000,
type = 'item',
image = 'ultra_flightsuit.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'Warning: This Suit is SERIOUSLY OVER-POWERED!',
},
Last updated