Documentation
  • 👋Welcome
  • 📒Live change - patchnotes
  • *️Snippets
  • 🚩Community Sent Locales
    • 🎰Vending Machine Robbery Locales
      • 🇳🇱Netherlands
    • 🏧Atm Robbery Locales
      • 🇳🇱Netherlands
    • 🏦Union Depository Heist Locales
      • 🇳🇱Netherlands
    • 🏦Pacific Bank Robbery Default Locales
      • 🇳🇱Netherlands
    • 💎Vangelico Robbery Default Locales
      • 🇳🇱Netherlands
    • 🏦Fleeca Bank Robbery V2 Locales
      • 🇳🇱Netherlands
    • 🚚Garbage Job
      • 🇳🇱Netherlands
  • 🔖K4MB1 Documentation
    • 🖼️K4MB1 Art Gallery Robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🦺K4MB1 Bobcat Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🗄️K4MB1 Casino Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
      • 👁️Targets
    • 🏦K4MB1 Maze Bank Robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏦K4MB1 Pacific Bank Robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏦K4MB1 Paleto Bank Robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 💣K4MB1 Underground Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 💎K4MB1 Vangelico Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 💎K4MB1 xGems Jewelery Robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
  • 📔FM Documentation
    • 🏪FM Shop Robberies
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
  • 📚Other Documentations
    • 🛬Carrier heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🚘Drug heists
      • 🚨Police alerts
    • 🏦Fleeca robbery
      • 📦Installation
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏦Merryweather HQ Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 💻Minigames
      • 📦Installation
      • 📔Exports & examples
    • 🏦Pacific Bank robbery default
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏦Gabz Paleto bank robbery
      • 📦Installation
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏦Paleto bank robbery default
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏦Roxwood Bank robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏪Shop Robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🏪Simple Stores
      • 📝Installation
      • ❗Notifications
    • 🏦Union Depository Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 💎Vangelico robbery
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🚗Vehicle chopshop
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
    • 🛻Vehicle Insu/Reg/Inspect
      • 📝Items
      • ❗Notifications
    • 🛥️Yacht Heist
      • 📝Items
      • 🚨Police alerts
      • ❗Notifications
Powered by GitBook
On this page
  1. 📚Other Documentations
  2. 🚗Vehicle chopshop

📝Items

PreviousVehicle chopshopNextPolice alerts

Last updated 11 months ago

CtrlK

Installation of the script • OX: Placement location: ox_Inventory/data/items.lua

• QB: Placement qb-core/shared/items.lua

• Item images in script folder

• Feel free to change items label, weight and description.

Items

        ['door'] = {
		label = 'Car door',
		weight = 1000,
		stack = true,
		close = true,
		description = "Car door, in good standing",

['door'] = {
    name = 'door',
    label = 'Car Door',
    weight = 1000,
    type = 'item',
    image = 'door.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Car door, in good standing'
},

['wheels'] = {
    name = 'wheels',
    label = 'Car Wheel',
    weight = 1000,
    type = 'item',
    image = 'wheels.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Car wheels, in good standing'
},

['hood'] = {
    name = 'hood',
    label = 'Car Hood',
    weight = 1000,
    type = 'item',
    image = 'hood.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Car hood, in good standing'
},

['trunk'] = {
    name = 'trunk',
    label = 'Car Trunk',
    weight = 1000,
    type = 'item',
    image = 'trunk.png',
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Car trunk, in good standing'
},

['rubber'] = {
    name = 'rubber',
    label = 'Rubber',
    weight = 100,
    type = 'item',
    image = 'rubber.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'Rubber, I believe you can make your own rubber ducky with it :D'
},

['steel'] = {
    name = 'steel',
    label = 'Steel',
    weight = 100,
    type = 'item',
    image = 'steel.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'Nice piece of metal that you can probably use for something'
},

['metalscrap'] = {
    name = 'metalscrap',
    label = 'Metal Scrap',
    weight = 100,
    type = 'item',
    image = 'metalscrap.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'You can probably make something nice out of this'
},

['aluminum'] = {
    name = 'aluminum',
    label = 'Aluminium',
    weight = 100,
    type = 'item',
    image = 'aluminum.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'Nice piece of metal that you can probably use for something'
},

['iron'] = {
    name = 'iron',
    label = 'Iron',
    weight = 100,
    type = 'item',
    image = 'iron.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'Handy piece of metal that you can probably use for something'
},

['plastic'] = {
    name = 'plastic',
    label = 'Plastic',
    weight = 100,
    type = 'item',
    image = 'plastic.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'RECYCLE! - Greta Thunberg 2019'
},

['glass'] = {
    name = 'glass',
    label = 'Glass',
    weight = 100,
    type = 'item',
    image = 'glass.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'It is very fragile, watch out'
},

['wires'] = {
    name = 'wires',
    label = 'Wires',
    weight = 100,
    type = 'item',
    image = 'wires.png',
    unique = false,
    useable = false,
    shouldClose = false,
    description = 'Bunch of wires, might be usable for something'
},
},
['wheels'] = {
label = 'Car wheel',
weight = 1000,
stack = true,
close = true,
description = "Car wheels, in good standing",
},
['hood'] = {
label = 'Car hood',
weight = 1000,
stack = true,
close = true,
description = "Car hood, in good standing",
},
['trunk'] = {
label = 'Car trunk',
weight = 1000,
stack = true,
close = true,
description = "Car trunk, in good standing",
},
["rubber"] = {
label = "Rubber",
weight = 100,
stack = true,
close = false,
description = "Rubber, I believe you can make your own rubber ducky with it :D",
},
["steel"] = {
label = "Steel",
weight = 100,
stack = true,
close = false,
description = "Nice piece of metal that you can probably use for something",
},
["metalscrap"] = {
label = "Metal Scrap",
weight = 100,
stack = true,
close = false,
description = "You can probably make something nice out of this",
},
["aluminum"] = {
label = "Aluminium",
weight = 100,
stack = true,
close = false,
description = "Nice piece of metal that you can probably use for something",
},
["iron"] = {
label = "Iron",
weight = 100,
stack = true,
close = false,
description = "Handy piece of metal that you can probably use for something",
},
["plastic"] = {
label = "Plastic",
weight = 100,
stack = true,
close = false,
description = "RECYCLE! - Greta Thunberg 2019",
},
["glass"] = {
label = "Glass",
weight = 100,
stack = true,
close = false,
description = "It is very fragile, watch out",
},
["wires"] = {
label = "Wires",
weight = 100,
stack = true,
close = false,
description = "Bunch of wires, might be usable for something",
},