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,
},

Last updated