Inventory Setup
Add to items.lua
["ejector_seat"] = {
    label = 'Ejector Seat',
    description = 'For Installing Ejector Seat into Vehicles',
    weight = 1000,
    stack = false,
    close = true,
},
["mech_toolkit"] = {
    label = 'Mechanic Toolkit',
    description = 'For Removing Ejector Seats or Harnesses from Vehicles',
    weight = 1000,
    stack = false,
    close = true,
},["ejector_seat"] = {
    name = "ejector_seat",
    label = "Ejector Seat",
    weight = 1000,
    type = "item",
    image = "ejector_seat.png",
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "For Installing Ejector Seat into Vehicles"
},
["mech_toolkit"] = {
    name = "mech_toolkit",
    label = "Mechanic Toolkit",
    weight = 1000,
    type = "item",
    image = "mech_toolkit.png",
    unique = true,
    useable = true,
    shouldClose = true,
    combinable = nil,
    description = "For Removing Ejector Seats or Harnesses from Vehicles"
}Last updated
